#[repr(u8)]pub enum Start {
CHANNEL_NOT_STARTED = 0,
CHANNEL_STARTED = 1,
}Variants§
CHANNEL_NOT_STARTED = 0
Channel not explicitly started
CHANNEL_STARTED = 1
Channel explicitly started via a software-initiated service request
Implementations§
Trait Implementations§
Source§impl Ord for Start
impl Ord for Start
Source§impl PartialOrd for Start
impl PartialOrd for Start
impl Copy for Start
impl Eq for Start
impl StructuralPartialEq for Start
Auto Trait Implementations§
impl Freeze for Start
impl RefUnwindSafe for Start
impl Send for Start
impl Sync for Start
impl Unpin for Start
impl UnwindSafe for Start
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