pub struct SecretsSpec {
pub provider: SecretProvider,
pub required: Vec<String>,
pub map: BTreeMap<String, String>,
pub external_store: Option<ExternalStore>,
}Fields§
§provider: SecretProvider§required: Vec<String>§map: BTreeMap<String, String>§external_store: Option<ExternalStore>Trait Implementations§
Source§impl Clone for SecretsSpec
impl Clone for SecretsSpec
Source§fn clone(&self) -> SecretsSpec
fn clone(&self) -> SecretsSpec
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 moreAuto Trait Implementations§
impl Freeze for SecretsSpec
impl RefUnwindSafe for SecretsSpec
impl Send for SecretsSpec
impl Sync for SecretsSpec
impl Unpin for SecretsSpec
impl UnsafeUnpin for SecretsSpec
impl UnwindSafe for SecretsSpec
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