Skip to main content

MayDowncastTo

Trait MayDowncastTo 

Source
pub trait MayDowncastTo<T> { }
Expand description

Marker trait for the statically known possibility of downcasting from Self to T.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<Super: IsA<Super>, Sub: IsA<Super>> MayDowncastTo<Sub> for Super