pub enum ResetFrameContext {
Unknown,
No0,
No1,
SingleReset,
FullReset,
}
Expand description
Defines if the frame context should be reset.
Variants§
Unknown
Unknown.
No0
Do not reset any frame context.
No1
Do not reset any frame context.
SingleReset
Resets just the context specified in the frame header.
FullReset
Resets all contexts.
Trait Implementations§
Source§impl Clone for ResetFrameContext
impl Clone for ResetFrameContext
Source§fn clone(&self) -> ResetFrameContext
fn clone(&self) -> ResetFrameContext
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 ResetFrameContext
impl Debug for ResetFrameContext
Source§impl From<u8> for ResetFrameContext
impl From<u8> for ResetFrameContext
Source§impl Ord for ResetFrameContext
impl Ord for ResetFrameContext
Source§fn cmp(&self, other: &ResetFrameContext) -> Ordering
fn cmp(&self, other: &ResetFrameContext) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ResetFrameContext
impl PartialEq for ResetFrameContext
Source§impl PartialOrd for ResetFrameContext
impl PartialOrd for ResetFrameContext
impl Copy for ResetFrameContext
impl Eq for ResetFrameContext
impl StructuralPartialEq for ResetFrameContext
Auto Trait Implementations§
impl Freeze for ResetFrameContext
impl RefUnwindSafe for ResetFrameContext
impl Send for ResetFrameContext
impl Sync for ResetFrameContext
impl Unpin for ResetFrameContext
impl UnwindSafe for ResetFrameContext
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