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§
source§impl Ord for TagMode
impl Ord for TagMode
source§impl PartialEq<TagMode> for TagMode
impl PartialEq<TagMode> for TagMode
source§impl PartialOrd<TagMode> for TagMode
impl PartialOrd<TagMode> for TagMode
1.0.0 · source§fn 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 moreimpl 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§
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