pub enum Value {
Owned(String),
Referenced(String),
}
Expand description
The value of a Visualize implementer
Variants§
Owned(String)
The implementer owns this data and the data will appear as this string
Referenced(String)
The implementer references this data and there will be a graph edge from this reference to the referenced data
The string contains a hex value starting with 0x
, which is the memory address of the
referenced data
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Value
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
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