pub struct Finished {
pub auth_key: [u8; 256],
pub time_offset: i32,
pub first_salt: i64,
}Expand description
The final output of a successful auth key handshake.
Fields§
§auth_key: [u8; 256]The 256-byte Telegram authorization key.
time_offset: i32Clock skew in seconds relative to the server.
first_salt: i64Initial server salt.
Trait Implementations§
impl StructuralPartialEq for Finished
Auto Trait Implementations§
impl Freeze for Finished
impl RefUnwindSafe for Finished
impl Send for Finished
impl Sync for Finished
impl Unpin for Finished
impl UnsafeUnpin for Finished
impl UnwindSafe for Finished
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