pub enum AdvertisementEvent {
Advertisement,
DirectAdvertisement,
Scan,
NonConnectableAdvertisement,
ScanResponse,
}
Expand description
Types of advertisement reports.
See LeAdvertisement
.
Variants§
Advertisement
Connectable undirected advertising
DirectAdvertisement
Connectable directed advertising
Scan
Scannable undirected advertising
NonConnectableAdvertisement
Non connectable undirected advertising
ScanResponse
Scan Response
Trait Implementations§
Source§impl Clone for AdvertisementEvent
impl Clone for AdvertisementEvent
Source§fn clone(&self) -> AdvertisementEvent
fn clone(&self) -> AdvertisementEvent
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 AdvertisementEvent
impl Debug for AdvertisementEvent
Source§impl PartialEq for AdvertisementEvent
impl PartialEq for AdvertisementEvent
Source§impl TryFrom<u8> for AdvertisementEvent
impl TryFrom<u8> for AdvertisementEvent
impl Copy for AdvertisementEvent
impl StructuralPartialEq for AdvertisementEvent
Auto Trait Implementations§
impl Freeze for AdvertisementEvent
impl RefUnwindSafe for AdvertisementEvent
impl Send for AdvertisementEvent
impl Sync for AdvertisementEvent
impl Unpin for AdvertisementEvent
impl UnwindSafe for AdvertisementEvent
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