pub struct SecureData {
pub data: Vec<u8>,
pub data_hash: Vec<u8>,
pub secret: Vec<u8>,
}Expand description
Generated from the following TL definition:
secureData#8aeabec3 data:bytes data_hash:bytes secret:bytes = SecureDataFields§
§data: Vec<u8>§data_hash: Vec<u8>§secret: Vec<u8>Trait Implementations§
Source§impl Clone for SecureData
impl Clone for SecureData
Source§fn clone(&self) -> SecureData
fn clone(&self) -> SecureData
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 SecureData
impl Debug for SecureData
Source§impl Deserializable for SecureData
impl Deserializable for SecureData
Source§impl From<SecureData> for SecureData
impl From<SecureData> for SecureData
Source§fn from(x: SecureData) -> Self
fn from(x: SecureData) -> Self
Converts to this type from the input type.
Source§impl From<SecureData> for SecureData
impl From<SecureData> for SecureData
Source§fn from(x: SecureData) -> Self
fn from(x: SecureData) -> Self
Converts to this type from the input type.
Source§impl Identifiable for SecureData
impl Identifiable for SecureData
Source§const CONSTRUCTOR_ID: u32 = 2330640067
const CONSTRUCTOR_ID: u32 = 2330640067
The unique identifier for the type.
Source§impl PartialEq for SecureData
impl PartialEq for SecureData
Source§impl Serializable for SecureData
impl Serializable for SecureData
impl StructuralPartialEq for SecureData
Auto Trait Implementations§
impl Freeze for SecureData
impl RefUnwindSafe for SecureData
impl Send for SecureData
impl Sync for SecureData
impl Unpin for SecureData
impl UnsafeUnpin for SecureData
impl UnwindSafe for SecureData
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