pub struct DatabaseSecretData {
pub raw: Option<String>,
pub computed: Option<String>,
pub note: Option<String>,
pub raw_visibility: Option<String>,
pub computed_visibility: Option<String>,
}Expand description
DatabaseSecretData
Fields§
§raw: Option<String>§computed: Option<String>§note: Option<String>§raw_visibility: Option<String>§computed_visibility: Option<String>Implementations§
Source§impl DatabaseSecretData
impl DatabaseSecretData
pub fn new() -> DatabaseSecretData
Trait Implementations§
Source§impl Clone for DatabaseSecretData
impl Clone for DatabaseSecretData
Source§fn clone(&self) -> DatabaseSecretData
fn clone(&self) -> DatabaseSecretData
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 DatabaseSecretData
impl Debug for DatabaseSecretData
Source§impl Default for DatabaseSecretData
impl Default for DatabaseSecretData
Source§fn default() -> DatabaseSecretData
fn default() -> DatabaseSecretData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatabaseSecretData
impl<'de> Deserialize<'de> for DatabaseSecretData
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 DatabaseSecretData
impl PartialEq for DatabaseSecretData
Source§impl Serialize for DatabaseSecretData
impl Serialize for DatabaseSecretData
impl StructuralPartialEq for DatabaseSecretData
Auto Trait Implementations§
impl Freeze for DatabaseSecretData
impl RefUnwindSafe for DatabaseSecretData
impl Send for DatabaseSecretData
impl Sync for DatabaseSecretData
impl Unpin for DatabaseSecretData
impl UnsafeUnpin for DatabaseSecretData
impl UnwindSafe for DatabaseSecretData
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