pub trait UnsafeAny: Any { }
Expand description
A trait providing unchecked downcasting to its contents when stored
in a trait object.
Returns a reference to the contained value, assuming that it is of type T
.
If you are not absolutely certain of T
you should not call this!
Returns a mutable reference to the contained value, assuming that it is of type T
.
If you are not absolutely certain of T
you should not call this!
Returns a the contained value, assuming that it is of type T
.
If you are not absolutely certain of T
you should not call this!
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