pub enum PairVerifyStep {
Send(Vec<u8>),
Done(SessionKeys),
}Expand description
The result of feeding one accessory response to PairVerifyClient::handle.
Variants§
Send(Vec<u8>)
The next controller message (M3) to transmit to the accessory.
Done(SessionKeys)
Pair Verify completed; the SessionKeys are ready for the record layer.
Trait Implementations§
Source§impl Clone for PairVerifyStep
impl Clone for PairVerifyStep
Source§fn clone(&self) -> PairVerifyStep
fn clone(&self) -> PairVerifyStep
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PairVerifyStep
impl Debug for PairVerifyStep
impl Eq for PairVerifyStep
Source§impl PartialEq for PairVerifyStep
impl PartialEq for PairVerifyStep
Source§fn eq(&self, other: &PairVerifyStep) -> bool
fn eq(&self, other: &PairVerifyStep) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PairVerifyStep
Auto Trait Implementations§
impl Freeze for PairVerifyStep
impl RefUnwindSafe for PairVerifyStep
impl Send for PairVerifyStep
impl Sync for PairVerifyStep
impl Unpin for PairVerifyStep
impl UnsafeUnpin for PairVerifyStep
impl UnwindSafe for PairVerifyStep
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