pub struct ConfigValueEntry {
pub value: String,
pub type: String,
pub is_secret: bool,
pub encrypted: bool,
}Fields§
§value: String§type: String§is_secret: bool§encrypted: boolImplementations§
Trait Implementations§
Source§impl Clone for ConfigValueEntry
impl Clone for ConfigValueEntry
Source§fn clone(&self) -> ConfigValueEntry
fn clone(&self) -> ConfigValueEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 ConfigValueEntry
impl Debug for ConfigValueEntry
Source§impl<'de> Deserialize<'de> for ConfigValueEntry
impl<'de> Deserialize<'de> for ConfigValueEntry
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
Auto Trait Implementations§
impl Freeze for ConfigValueEntry
impl RefUnwindSafe for ConfigValueEntry
impl Send for ConfigValueEntry
impl Sync for ConfigValueEntry
impl Unpin for ConfigValueEntry
impl UnsafeUnpin for ConfigValueEntry
impl UnwindSafe for ConfigValueEntry
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