pub struct SecretsMap {
pub stripe: Option<StripeSecretData>,
pub algolia: Option<AlgoliaSecretData>,
pub database: Option<DatabaseSecretData>,
pub user: Option<UserSecretData>,
}Expand description
SecretsMap
Fields§
§stripe: Option<StripeSecretData>§algolia: Option<AlgoliaSecretData>§database: Option<DatabaseSecretData>§user: Option<UserSecretData>Implementations§
Source§impl SecretsMap
impl SecretsMap
pub fn new() -> SecretsMap
Trait Implementations§
Source§impl Clone for SecretsMap
impl Clone for SecretsMap
Source§fn clone(&self) -> SecretsMap
fn clone(&self) -> SecretsMap
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SecretsMap
impl Debug for SecretsMap
Source§impl Default for SecretsMap
impl Default for SecretsMap
Source§fn default() -> SecretsMap
fn default() -> SecretsMap
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecretsMap
impl<'de> Deserialize<'de> for SecretsMap
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SecretsMap
impl PartialEq for SecretsMap
Source§impl Serialize for SecretsMap
impl Serialize for SecretsMap
impl StructuralPartialEq for SecretsMap
Auto Trait Implementations§
impl Freeze for SecretsMap
impl RefUnwindSafe for SecretsMap
impl Send for SecretsMap
impl Sync for SecretsMap
impl Unpin for SecretsMap
impl UnsafeUnpin for SecretsMap
impl UnwindSafe for SecretsMap
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more