pub type InternedAppLabel = Interned<dyn AppLabel>;
Expand description
A shorthand for Interned<dyn AppLabel>
.
struct InternedAppLabel(pub &'static dyn AppLabel);
Trait Implementations
Casts this value to a form where it can be compared with other type-erased values.
Clones this AppLabel
.
Feeds this value into the given [Hasher
].
Returns an
Interned
value corresponding to
self
.
Performs copy-assignment from
source
.
Read more
Formats the value using the given formatter.
Read more
The resulting type after dereferencing.
Dereferences the value.
Converts to this type from the input type.
Tests for self
and other
values to be equal, and is used by ==
.
Tests for !=
. The default implementation is almost always sufficient,
and should not be overridden without very good reason.