Enum ConfigValue
pub enum ConfigValue<OUTPUT> {
PlainText(String),
Secret(OUTPUT),
}Variants§
Auto Trait Implementations§
impl<OUTPUT> Freeze for ConfigValue<OUTPUT>where
OUTPUT: Freeze,
impl<OUTPUT> RefUnwindSafe for ConfigValue<OUTPUT>where
OUTPUT: RefUnwindSafe,
impl<OUTPUT> Send for ConfigValue<OUTPUT>where
OUTPUT: Send,
impl<OUTPUT> Sync for ConfigValue<OUTPUT>where
OUTPUT: Sync,
impl<OUTPUT> Unpin for ConfigValue<OUTPUT>where
OUTPUT: Unpin,
impl<OUTPUT> UnwindSafe for ConfigValue<OUTPUT>where
OUTPUT: UnwindSafe,
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