pub struct ErasedDynGd {
pub boxed: Box<dyn Any>,
}
Expand description
Type-erased DynGd<Object, D>
for some trait object D
.
See DynTraitImpl
for usage.
Fields§
§boxed: Box<dyn Any>
Auto Trait Implementations§
impl Freeze for ErasedDynGd
impl !RefUnwindSafe for ErasedDynGd
impl !Send for ErasedDynGd
impl !Sync for ErasedDynGd
impl Unpin for ErasedDynGd
impl !UnwindSafe for ErasedDynGd
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more