Skip to main content

DynTagged

Trait DynTagged 

Source
pub trait DynTagged {
    // Required method
    fn tag(&self) -> Tag;
}

Required Methods§

Source

fn tag(&self) -> Tag

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl DynTagged for (Class, bool, Tag)

Source§

fn tag(&self) -> Tag

Source§

impl<T> DynTagged for Option<T>
where T: DynTagged,

Source§

fn tag(&self) -> Tag

Implementors§

Source§

impl DynTagged for Any<'_>

Source§

impl DynTagged for Header<'_>

Source§

impl DynTagged for Length

Source§

impl<T> DynTagged for T
where T: Tagged,

Source§

impl<TagKind, T, E> DynTagged for TaggedParser<'_, TagKind, T, E>