pub enum TagMode {
Explicit,
Implicit,
}Expand description
Tagging modes: EXPLICIT versus IMPLICIT.
Variants
Explicit
EXPLICIT tagging.
Tag is added in addition to the inner tag of the type.
Implicit
IMPLICIT tagging.
Tag replaces the existing tag of the inner type.
Trait Implementations
sourceimpl Ord for TagMode
impl Ord for TagMode
sourceimpl PartialOrd<TagMode> for TagMode
impl PartialOrd<TagMode> for TagMode
sourcefn partial_cmp(&self, other: &TagMode) -> Option<Ordering>
fn partial_cmp(&self, other: &TagMode) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Copy for TagMode
impl Eq for TagMode
impl StructuralEq for TagMode
impl StructuralPartialEq for TagMode
Auto Trait Implementations
impl RefUnwindSafe for TagMode
impl Send for TagMode
impl Sync for TagMode
impl Unpin for TagMode
impl UnwindSafe for TagMode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more