pub struct RawAdvert {
pub manufacturer_data: Vec<u8>,
}Expand description
A raw advertisement observed by a backend scanner: the Apple (0x004C)
manufacturer-data bytes. Parsed into a crate::advert::HapAdvert by callers.
Fields§
§manufacturer_data: Vec<u8>Apple manufacturer-data payload (the bytes after the 0x004C company id).
Trait Implementations§
impl Eq for RawAdvert
impl StructuralPartialEq for RawAdvert
Auto Trait Implementations§
impl Freeze for RawAdvert
impl RefUnwindSafe for RawAdvert
impl Send for RawAdvert
impl Sync for RawAdvert
impl Unpin for RawAdvert
impl UnsafeUnpin for RawAdvert
impl UnwindSafe for RawAdvert
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