pub enum EncoderMode {
BranchTrace,
}Expand description
Mode the encoder is operating in
Variants§
BranchTrace
Trait Implementations§
Source§impl Clone for EncoderMode
impl Clone for EncoderMode
Source§fn clone(&self) -> EncoderMode
fn clone(&self) -> EncoderMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EncoderMode
Source§impl Debug for EncoderMode
impl Debug for EncoderMode
Source§impl Default for EncoderMode
impl Default for EncoderMode
Source§fn default() -> EncoderMode
fn default() -> EncoderMode
Returns the “default value” for a type. Read more
Source§impl Display for EncoderMode
impl Display for EncoderMode
impl Eq for EncoderMode
Source§impl From<EncoderMode> for u8
impl From<EncoderMode> for u8
Source§fn from(mode: EncoderMode) -> Self
fn from(mode: EncoderMode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EncoderMode
impl PartialEq for EncoderMode
impl StructuralPartialEq for EncoderMode
Auto Trait Implementations§
impl Freeze for EncoderMode
impl RefUnwindSafe for EncoderMode
impl Send for EncoderMode
impl Sync for EncoderMode
impl Unpin for EncoderMode
impl UnsafeUnpin for EncoderMode
impl UnwindSafe for EncoderMode
Blanket Implementations§
Source§impl<T> Adaptable for T
impl<T> Adaptable for T
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more