Trait tract_pulse::internal::Downcast
source · pub trait Downcast: Any {
// Required methods
fn into_any(self: Box<Self, Global>) -> Box<dyn Any + 'static, Global>;
fn into_any_rc(self: Rc<Self>) -> Rc<dyn Any + 'static>;
fn as_any(&self) -> &(dyn Any + 'static);
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static);
}
Expand description
Supports conversion to Any
. Traits to be extended by impl_downcast!
must extend Downcast
.
Required Methods§
sourcefn into_any(self: Box<Self, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<Self, Global>) -> Box<dyn Any + 'static, Global>
Convert Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.
sourcefn into_any_rc(self: Rc<Self>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<Self>) -> Rc<dyn Any + 'static>
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.
sourcefn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert &Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.
sourcefn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert &mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.