pub enum OutOfBandAuthentication {
Disabled,
Enabled([u8; 16]),
}
Expand description
Options for out_of_band_auth
.
Variants§
Disabled
Out Of Band authentication not enabled
Enabled([u8; 16])
Out Of Band authentication enabled; includes the OOB data.
Auto Trait Implementations§
impl Freeze for OutOfBandAuthentication
impl RefUnwindSafe for OutOfBandAuthentication
impl Send for OutOfBandAuthentication
impl Sync for OutOfBandAuthentication
impl Unpin for OutOfBandAuthentication
impl UnwindSafe for OutOfBandAuthentication
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