pub struct MemoryDetailView {
pub node_id: String,
pub detail: String,
pub content_hash: String,
pub revision: u64,
}Expand description
Full detail for one node, with the hash that makes it citable.
Fields§
§node_id: String§detail: String§content_hash: String§revision: u64Trait Implementations§
Source§impl Clone for MemoryDetailView
impl Clone for MemoryDetailView
Source§fn clone(&self) -> MemoryDetailView
fn clone(&self) -> MemoryDetailView
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MemoryDetailView
impl Debug for MemoryDetailView
Source§impl<'de> Deserialize<'de> for MemoryDetailView
impl<'de> Deserialize<'de> for MemoryDetailView
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for MemoryDetailView
Source§impl PartialEq for MemoryDetailView
impl PartialEq for MemoryDetailView
Source§impl Serialize for MemoryDetailView
impl Serialize for MemoryDetailView
impl StructuralPartialEq for MemoryDetailView
Auto Trait Implementations§
impl Freeze for MemoryDetailView
impl RefUnwindSafe for MemoryDetailView
impl Send for MemoryDetailView
impl Sync for MemoryDetailView
impl Unpin for MemoryDetailView
impl UnsafeUnpin for MemoryDetailView
impl UnwindSafe for MemoryDetailView
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