pub struct ValueView {
pub kind: ValueKind,
pub display: String,
pub heap_id: Option<usize>,
}Fields§
§kind: ValueKind§display: String§heap_id: Option<usize>Present exactly for heap-node kinds, even when the object itself was
dropped from HeapView.objects by the budget — the UI shows those as
“not captured” instead of losing the reference.
Trait Implementations§
impl Eq for ValueView
impl StructuralPartialEq for ValueView
Auto Trait Implementations§
impl Freeze for ValueView
impl RefUnwindSafe for ValueView
impl Send for ValueView
impl Sync for ValueView
impl Unpin for ValueView
impl UnsafeUnpin for ValueView
impl UnwindSafe for ValueView
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