pub struct BindTempAuthKey {
pub perm_auth_key_id: i64,
pub nonce: i64,
pub expires_at: i32,
pub encrypted_message: Vec<u8>,
}Expand description
Generated from:
auth.bindTempAuthKey#cdd42a05 perm_auth_key_id:long nonce:long expires_at:int encrypted_message:bytes = BoolFields§
§perm_auth_key_id: i64§nonce: i64§expires_at: i32§encrypted_message: Vec<u8>Trait Implementations§
Source§impl Clone for BindTempAuthKey
impl Clone for BindTempAuthKey
Source§fn clone(&self) -> BindTempAuthKey
fn clone(&self) -> BindTempAuthKey
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 BindTempAuthKey
impl Debug for BindTempAuthKey
Source§impl Identifiable for BindTempAuthKey
impl Identifiable for BindTempAuthKey
Source§const CONSTRUCTOR_ID: u32 = 0xcdd42a05
const CONSTRUCTOR_ID: u32 = 0xcdd42a05
The constructor ID as specified in the TL schema.
Source§impl PartialEq for BindTempAuthKey
impl PartialEq for BindTempAuthKey
Source§impl RemoteCall for BindTempAuthKey
impl RemoteCall for BindTempAuthKey
Source§impl Serializable for BindTempAuthKey
impl Serializable for BindTempAuthKey
impl StructuralPartialEq for BindTempAuthKey
Auto Trait Implementations§
impl Freeze for BindTempAuthKey
impl RefUnwindSafe for BindTempAuthKey
impl Send for BindTempAuthKey
impl Sync for BindTempAuthKey
impl Unpin for BindTempAuthKey
impl UnsafeUnpin for BindTempAuthKey
impl UnwindSafe for BindTempAuthKey
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