pub struct EntryAddr(/* private fields */);
Expand description
This is a reference to an entry. It’s like a &dyn
ref to some type T: Entry
, except that the run-time type information is encoded into the
Entry itself in very specific way.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EntryAddr
impl RefUnwindSafe for EntryAddr
impl !Send for EntryAddr
impl Unpin for EntryAddr
impl UnwindSafe for EntryAddr
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