pub enum AdvertisingOperation {
IntermediateFragment = 0,
FirstFragment = 1,
LastFragment = 2,
CompleteData = 3,
UnchangedData = 4,
}
Expand description
Advertising Operation
Variants§
IntermediateFragment = 0
Intermediate fragment of fragmented extended advertising data
FirstFragment = 1
First fragment of fragmented extended advertising data
LastFragment = 2
Last fragment of fragmented extended advertising data
CompleteData = 3
Complete extended advertising data
UnchangedData = 4
Unchanged data (just update the advertising DID)
Trait Implementations§
Source§impl Clone for AdvertisingOperation
impl Clone for AdvertisingOperation
Source§fn clone(&self) -> AdvertisingOperation
fn clone(&self) -> AdvertisingOperation
Returns a duplicate of the value. Read more
1.0.0 · 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 AdvertisingOperation
impl Debug for AdvertisingOperation
impl Copy for AdvertisingOperation
Auto Trait Implementations§
impl Freeze for AdvertisingOperation
impl RefUnwindSafe for AdvertisingOperation
impl Send for AdvertisingOperation
impl Sync for AdvertisingOperation
impl Unpin for AdvertisingOperation
impl UnwindSafe for AdvertisingOperation
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