mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-30 01:27:31 +08:00
10 lines
216 B
Rust
10 lines
216 B
Rust
//! Secret `Vec` types
|
|
//!
|
|
//! There is not alias type by design.
|
|
|
|
#[cfg(feature = "serde")]
|
|
use super::{SerializableSecret, Serialize};
|
|
|
|
#[cfg(feature = "serde")]
|
|
impl<S: Serialize> SerializableSecret for Vec<S> {}
|