pub enum EntryType {
FindService,
OfferService,
StopOfferService,
Subscribe,
SubscribeAck,
}Expand description
The type of an SD entry.
Variants§
FindService
Find a service (0x00).
OfferService
Offer a service (0x01).
StopOfferService
Stop offering a service (0x02).
Subscribe
Subscribe to an event group (0x06).
SubscribeAck
Acknowledge an event group subscription (0x07).
Trait Implementations§
impl Copy for EntryType
impl Eq for EntryType
impl StructuralPartialEq for EntryType
Auto Trait Implementations§
impl Freeze for EntryType
impl RefUnwindSafe for EntryType
impl Send for EntryType
impl Sync for EntryType
impl Unpin for EntryType
impl UnsafeUnpin for EntryType
impl UnwindSafe for EntryType
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