pub struct PQInnerDataTempDc {
pub pq: Vec<u8>,
pub p: Vec<u8>,
pub q: Vec<u8>,
pub nonce: [u8; 16],
pub server_nonce: [u8; 16],
pub new_nonce: [u8; 32],
pub dc: i32,
pub expires_in: i32,
}Expand description
Generated from:
p_q_inner_data_temp_dc#56fddf88 pq:bytes p:bytes q:bytes nonce:int128 server_nonce:int128 new_nonce:int256 dc:int expires_in:int = P_Q_inner_dataFields§
§pq: Vec<u8>§p: Vec<u8>§q: Vec<u8>§nonce: [u8; 16]§server_nonce: [u8; 16]§new_nonce: [u8; 32]§dc: i32§expires_in: i32Trait Implementations§
Source§impl Clone for PQInnerDataTempDc
impl Clone for PQInnerDataTempDc
Source§fn clone(&self) -> PQInnerDataTempDc
fn clone(&self) -> PQInnerDataTempDc
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 PQInnerDataTempDc
impl Debug for PQInnerDataTempDc
Source§impl Deserializable for PQInnerDataTempDc
impl Deserializable for PQInnerDataTempDc
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<PQInnerDataTempDc> for PQInnerData
impl From<PQInnerDataTempDc> for PQInnerData
Source§fn from(x: PQInnerDataTempDc) -> Self
fn from(x: PQInnerDataTempDc) -> Self
Converts to this type from the input type.
Source§impl Identifiable for PQInnerDataTempDc
impl Identifiable for PQInnerDataTempDc
Source§const CONSTRUCTOR_ID: u32 = 0x56fddf88
const CONSTRUCTOR_ID: u32 = 0x56fddf88
The constructor ID as specified in the TL schema.
Source§impl PartialEq for PQInnerDataTempDc
impl PartialEq for PQInnerDataTempDc
Source§impl Serializable for PQInnerDataTempDc
impl Serializable for PQInnerDataTempDc
Source§impl TryFrom<PQInnerData> for PQInnerDataTempDc
impl TryFrom<PQInnerData> for PQInnerDataTempDc
Source§type Error = PQInnerData
type Error = PQInnerData
The type returned in the event of a conversion error.
impl StructuralPartialEq for PQInnerDataTempDc
Auto Trait Implementations§
impl Freeze for PQInnerDataTempDc
impl RefUnwindSafe for PQInnerDataTempDc
impl Send for PQInnerDataTempDc
impl Sync for PQInnerDataTempDc
impl Unpin for PQInnerDataTempDc
impl UnsafeUnpin for PQInnerDataTempDc
impl UnwindSafe for PQInnerDataTempDc
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