pub enum FrameId {
LastFrameId(u16),
CurrentFrameId(u16),
}Expand description
Frame id for packets with more than one frame
Variants§
LastFrameId(u16)
Last frame id inside current packet (12 bits)
CurrentFrameId(u16)
Current frame id (12 bits)
Trait Implementations§
impl StructuralPartialEq for FrameId
Auto Trait Implementations§
impl Freeze for FrameId
impl RefUnwindSafe for FrameId
impl Send for FrameId
impl Sync for FrameId
impl Unpin for FrameId
impl UnwindSafe for FrameId
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