pub struct BootstrapResult {
pub identity: ClientIdentity,
pub extensions: Vec<u16>,
pub session_id: [u8; 6],
}Available on crate feature
client only.Expand description
Result of a successful bootstrap.
Fields§
§identity: ClientIdentityClient identity used.
extensions: Vec<u16>Negotiated extensions.
session_id: [u8; 6]Session ID assigned by server.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BootstrapResult
impl RefUnwindSafe for BootstrapResult
impl Send for BootstrapResult
impl Sync for BootstrapResult
impl Unpin for BootstrapResult
impl UnwindSafe for BootstrapResult
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