Expand description
A marker trait meant for use as the A
parameter in TypeMap
.
This can be used to construct TypeMap
s containing only types which
implement Debug
like so: TypeMap::<DebugAny>::custom()
, which produces
a TypeMap<DebugAny>
. Combine DebugAny
with Send
or Sync
to add
additional bounds.
There is also an exported alias for this type of TypeMap
, DebugMap
.
Returns a reference to the contained value, assuming that it is of type T
. Read more
Returns a mutable reference to the contained value, assuming that it is of type T
. Read more
Returns a the contained value, assuming that it is of type T
. Read more
Returns a reference to the contained value, assuming that it is of type T
. Read more
Returns a mutable reference to the contained value, assuming that it is of type T
. Read more
Returns a the contained value, assuming that it is of type T
. Read more
Returns a reference to the contained value, assuming that it is of type T
. Read more
Returns a mutable reference to the contained value, assuming that it is of type T
. Read more
Returns a the contained value, assuming that it is of type T
. Read more
Returns a reference to the contained value, assuming that it is of type T
. Read more
Returns a mutable reference to the contained value, assuming that it is of type T
. Read more
Returns a the contained value, assuming that it is of type T
. Read more