pub enum AddDeviceToListMode {
AppendResoling = 0,
ClearAndSetResolving = 1,
AppendWhitelist = 2,
ClearAndSetWhitelist = 3,
AppendBoth = 4,
ClearAndSetBoth = 5,
}
Expand description
Parameter for GAP Add Devices to List
Variants§
AppendResoling = 0
Append to the resolving list only
ClearAndSetResolving = 1
clear and set the resolving list only
AppendWhitelist = 2
append to the whitelist only
ClearAndSetWhitelist = 3
clear and set the whitelist only
AppendBoth = 4
apppend to both resolving and white lists
ClearAndSetBoth = 5
clear and set both resolving and white lists
Auto Trait Implementations§
impl Freeze for AddDeviceToListMode
impl RefUnwindSafe for AddDeviceToListMode
impl Send for AddDeviceToListMode
impl Sync for AddDeviceToListMode
impl Unpin for AddDeviceToListMode
impl UnwindSafe for AddDeviceToListMode
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