pub struct EnvKeySpec {
pub key: &'static str,
pub classification: EnvClassification,
pub placement: RuntimePlacement,
pub toml_destination: Option<&'static str>,
pub legacy_behavior: LegacyBehavior,
pub secret: bool,
pub plugin_option: Option<&'static str>,
}Fields§
§key: &'static str§classification: EnvClassification§placement: RuntimePlacement§toml_destination: Option<&'static str>§legacy_behavior: LegacyBehavior§secret: bool§plugin_option: Option<&'static str>Trait Implementations§
Source§impl Clone for EnvKeySpec
impl Clone for EnvKeySpec
Source§fn clone(&self) -> EnvKeySpec
fn clone(&self) -> EnvKeySpec
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 EnvKeySpec
impl Debug for EnvKeySpec
Source§impl PartialEq for EnvKeySpec
impl PartialEq for EnvKeySpec
Source§fn eq(&self, other: &EnvKeySpec) -> bool
fn eq(&self, other: &EnvKeySpec) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for EnvKeySpec
impl Eq for EnvKeySpec
impl StructuralPartialEq for EnvKeySpec
Auto Trait Implementations§
impl Freeze for EnvKeySpec
impl RefUnwindSafe for EnvKeySpec
impl Send for EnvKeySpec
impl Sync for EnvKeySpec
impl Unpin for EnvKeySpec
impl UnsafeUnpin for EnvKeySpec
impl UnwindSafe for EnvKeySpec
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