anymap2::any

Trait Any

Source
pub trait Any: StdAny { }
Expand description

See also CloneAny for a cloneable version of this trait.

Trait Implementations§

Source§

impl Debug for dyn Any

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Debug for dyn Any + Send

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Debug for dyn Any + Send + Sync

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Debug for dyn Any + Sync

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl UncheckedAnyExt for dyn Any

Source§

unsafe fn downcast_ref_unchecked<T>(&self) -> &T

Source§

unsafe fn downcast_mut_unchecked<T>(&mut self) -> &mut T

Source§

unsafe fn downcast_unchecked<T>(self: Box<Self>) -> Box<T>

Source§

impl UncheckedAnyExt for dyn Any + Send

Source§

unsafe fn downcast_ref_unchecked<T>(&self) -> &T

Source§

unsafe fn downcast_mut_unchecked<T>(&mut self) -> &mut T

Source§

unsafe fn downcast_unchecked<T>(self: Box<Self>) -> Box<T>

Source§

impl UncheckedAnyExt for dyn Any + Send + Sync

Source§

unsafe fn downcast_ref_unchecked<T>(&self) -> &T

Source§

unsafe fn downcast_mut_unchecked<T>(&mut self) -> &mut T

Source§

unsafe fn downcast_unchecked<T>(self: Box<Self>) -> Box<T>

Source§

impl UncheckedAnyExt for dyn Any + Sync

Source§

unsafe fn downcast_ref_unchecked<T>(&self) -> &T

Source§

unsafe fn downcast_mut_unchecked<T>(&mut self) -> &mut T

Source§

unsafe fn downcast_unchecked<T>(self: Box<Self>) -> Box<T>

Implementors§

Source§

impl<T: StdAny> Any for T