pub struct ResponderResult {
pub response: PairingResponse,
pub shared_secret: Zeroizing<[u8; 32]>,
pub sas: [u8; 8],
pub transport_key: TransportKey,
}Expand description
Result of a successful pairing response (responder side).
Fields§
§response: PairingResponse§sas: [u8; 8]§transport_key: TransportKeyAuto Trait Implementations§
impl Freeze for ResponderResult
impl RefUnwindSafe for ResponderResult
impl Send for ResponderResult
impl Sync for ResponderResult
impl Unpin for ResponderResult
impl UnsafeUnpin for ResponderResult
impl UnwindSafe for ResponderResult
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