pub enum SecureSecretSettings {
SecureSecretSettings(SecureSecretSettings),
}Expand description
Variants§
SecureSecretSettings(SecureSecretSettings)
Trait Implementations§
Source§impl Clone for SecureSecretSettings
impl Clone for SecureSecretSettings
Source§fn clone(&self) -> SecureSecretSettings
fn clone(&self) -> SecureSecretSettings
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 SecureSecretSettings
impl Debug for SecureSecretSettings
Source§impl Deserializable for SecureSecretSettings
impl Deserializable for SecureSecretSettings
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<SecureSecretSettings> for SecureSecretSettings
impl From<SecureSecretSettings> for SecureSecretSettings
Source§fn from(x: SecureSecretSettings) -> Self
fn from(x: SecureSecretSettings) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SecureSecretSettings
impl PartialEq for SecureSecretSettings
Source§impl Serializable for SecureSecretSettings
impl Serializable for SecureSecretSettings
Source§impl TryFrom<SecureSecretSettings> for SecureSecretSettings
impl TryFrom<SecureSecretSettings> for SecureSecretSettings
Source§type Error = SecureSecretSettings
type Error = SecureSecretSettings
The type returned in the event of a conversion error.
impl StructuralPartialEq for SecureSecretSettings
Auto Trait Implementations§
impl Freeze for SecureSecretSettings
impl RefUnwindSafe for SecureSecretSettings
impl Send for SecureSecretSettings
impl Sync for SecureSecretSettings
impl Unpin for SecureSecretSettings
impl UnsafeUnpin for SecureSecretSettings
impl UnwindSafe for SecureSecretSettings
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