pub enum SecureCredentialsEncrypted {
SecureCredentialsEncrypted(SecureCredentialsEncrypted),
}Expand description
Variants§
SecureCredentialsEncrypted(SecureCredentialsEncrypted)
Trait Implementations§
Source§impl Clone for SecureCredentialsEncrypted
impl Clone for SecureCredentialsEncrypted
Source§fn clone(&self) -> SecureCredentialsEncrypted
fn clone(&self) -> SecureCredentialsEncrypted
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 SecureCredentialsEncrypted
impl Debug for SecureCredentialsEncrypted
Source§impl Deserializable for SecureCredentialsEncrypted
impl Deserializable for SecureCredentialsEncrypted
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<SecureCredentialsEncrypted> for SecureCredentialsEncrypted
impl From<SecureCredentialsEncrypted> for SecureCredentialsEncrypted
Source§fn from(x: SecureCredentialsEncrypted) -> Self
fn from(x: SecureCredentialsEncrypted) -> Self
Converts to this type from the input type.
Source§impl TryFrom<SecureCredentialsEncrypted> for SecureCredentialsEncrypted
impl TryFrom<SecureCredentialsEncrypted> for SecureCredentialsEncrypted
Source§type Error = SecureCredentialsEncrypted
type Error = SecureCredentialsEncrypted
The type returned in the event of a conversion error.
impl StructuralPartialEq for SecureCredentialsEncrypted
Auto Trait Implementations§
impl Freeze for SecureCredentialsEncrypted
impl RefUnwindSafe for SecureCredentialsEncrypted
impl Send for SecureCredentialsEncrypted
impl Sync for SecureCredentialsEncrypted
impl Unpin for SecureCredentialsEncrypted
impl UnsafeUnpin for SecureCredentialsEncrypted
impl UnwindSafe for SecureCredentialsEncrypted
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