pub struct PeekSmartPointer<'mem> { /* private fields */ }Expand description
Represents a smart pointer that can be peeked at during memory inspection.
This struct holds the value being pointed to and the definition of the smart pointer type.
Implementations§
Source§impl PeekSmartPointer<'_>
impl PeekSmartPointer<'_>
Sourcepub fn def(&self) -> &SmartPointerDef
pub fn def(&self) -> &SmartPointerDef
Returns a reference to the smart pointer definition.
Auto Trait Implementations§
impl<'mem> Freeze for PeekSmartPointer<'mem>
impl<'mem> RefUnwindSafe for PeekSmartPointer<'mem>
impl<'mem> Send for PeekSmartPointer<'mem>
impl<'mem> Sync for PeekSmartPointer<'mem>
impl<'mem> Unpin for PeekSmartPointer<'mem>
impl<'mem> UnwindSafe for PeekSmartPointer<'mem>
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