AppLabel

Trait AppLabel 

Source
pub trait AppLabel:
    Send
    + Sync
    + Debug
    + DynEq
    + DynHash {
    // Required method
    fn dyn_clone(&self) -> Box<dyn AppLabel>;

    // Provided method
    fn intern(&self) -> Interned<dyn AppLabel>
       where Self: Sized { ... }
}
Expand description

A strongly-typed class of labels used to identify an App.

Required Methods§

Source

fn dyn_clone(&self) -> Box<dyn AppLabel>

Clones this AppLabel.

Provided Methods§

Source

fn intern(&self) -> Interned<dyn AppLabel>
where Self: Sized,

Returns an Interned value corresponding to self.

Trait Implementations§

Source§

impl Hash for dyn AppLabel

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
Source§

impl Internable for dyn AppLabel

Source§

fn leak(&self) -> &'static Self

Creates a static reference to self, possibly leaking memory.
Source§

fn ref_eq(&self, other: &Self) -> bool

Returns true if the two references point to the same value.
Source§

fn ref_hash<H: Hasher>(&self, state: &mut H)

Feeds the reference to the hasher.
Source§

impl PartialEq for dyn AppLabel

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for dyn AppLabel

Implementations on Foreign Types§

Source§

impl AppLabel for Interned<dyn AppLabel>

Source§

fn dyn_clone(&self) -> Box<dyn AppLabel>

Source§

fn intern(&self) -> Self

Implementors§