Trait anymap::any::Any
[−]
[src]
pub trait Any: StdAny { }
See also CloneAny for a cloneable version of this trait.
Trait Implementations
impl Debug for Any[src]
impl Debug for Anyfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl UncheckedAnyExt for Any[src]
impl UncheckedAnyExt for Anyunsafe fn downcast_ref_unchecked<T: 'static>(&self) -> &T[src]
unsafe fn downcast_ref_unchecked<T: 'static>(&self) -> &Tunsafe fn downcast_mut_unchecked<T: 'static>(&mut self) -> &mut T[src]
unsafe fn downcast_mut_unchecked<T: 'static>(&mut self) -> &mut Tunsafe fn downcast_unchecked<T: 'static>(self: Box<Self>) -> Box<T>[src]
unsafe fn downcast_unchecked<T: 'static>(self: Box<Self>) -> Box<T>impl Debug for Any + Send[src]
impl Debug for Any + Sendfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl UncheckedAnyExt for Any + Send[src]
impl UncheckedAnyExt for Any + Sendunsafe fn downcast_ref_unchecked<T: 'static>(&self) -> &T[src]
unsafe fn downcast_ref_unchecked<T: 'static>(&self) -> &Tunsafe fn downcast_mut_unchecked<T: 'static>(&mut self) -> &mut T[src]
unsafe fn downcast_mut_unchecked<T: 'static>(&mut self) -> &mut Tunsafe fn downcast_unchecked<T: 'static>(self: Box<Self>) -> Box<T>[src]
unsafe fn downcast_unchecked<T: 'static>(self: Box<Self>) -> Box<T>impl Debug for Any + Sync[src]
impl Debug for Any + Syncfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl UncheckedAnyExt for Any + Sync[src]
impl UncheckedAnyExt for Any + Syncunsafe fn downcast_ref_unchecked<T: 'static>(&self) -> &T[src]
unsafe fn downcast_ref_unchecked<T: 'static>(&self) -> &Tunsafe fn downcast_mut_unchecked<T: 'static>(&mut self) -> &mut T[src]
unsafe fn downcast_mut_unchecked<T: 'static>(&mut self) -> &mut Tunsafe fn downcast_unchecked<T: 'static>(self: Box<Self>) -> Box<T>[src]
unsafe fn downcast_unchecked<T: 'static>(self: Box<Self>) -> Box<T>impl Debug for Any + Send + Sync[src]
impl Debug for Any + Send + Syncfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl UncheckedAnyExt for Any + Send + Sync[src]
impl UncheckedAnyExt for Any + Send + Syncunsafe fn downcast_ref_unchecked<T: 'static>(&self) -> &T[src]
unsafe fn downcast_ref_unchecked<T: 'static>(&self) -> &Tunsafe fn downcast_mut_unchecked<T: 'static>(&mut self) -> &mut T[src]
unsafe fn downcast_mut_unchecked<T: 'static>(&mut self) -> &mut Tunsafe fn downcast_unchecked<T: 'static>(self: Box<Self>) -> Box<T>[src]
unsafe fn downcast_unchecked<T: 'static>(self: Box<Self>) -> Box<T>Implementors
impl<T: StdAny> Any for T