pub struct SecureCredentialsEncrypted {
pub data: Vec<u8>,
pub hash: Vec<u8>,
pub secret: Vec<u8>,
}Expand description
Generated from:
secureCredentialsEncrypted#33f0ea47 data:bytes hash:bytes secret:bytes = SecureCredentialsEncryptedFields§
§data: Vec<u8>§hash: Vec<u8>§secret: Vec<u8>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 Identifiable for SecureCredentialsEncrypted
impl Identifiable for SecureCredentialsEncrypted
Source§const CONSTRUCTOR_ID: u32 = 0x33f0ea47
const CONSTRUCTOR_ID: u32 = 0x33f0ea47
The constructor ID as specified in the TL schema.
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