[][src]Trait dyno::Tag

pub trait Tag<'a>: Sized + 'static {
    type Type: 'a;
}

An identifier which may be used to tag a specific

Associated Types

type Type: 'a[src]

The type of values which may be tagged by this Tag.

Loading content...

Implementors

impl<'a, T: ?Sized + 'static> Tag<'a> for Ref<T>[src]

type Type = &'a T

impl<'a, T: ?Sized + 'static> Tag<'a> for RefMut<T>[src]

type Type = &'a mut T

Loading content...