pub struct NodeRow {
pub row_id: String,
pub logical_id: String,
pub kind: String,
pub properties: String,
pub last_accessed_at: Option<i64>,
}Expand description
A single node row returned from a query.
Fields§
§row_id: StringPhysical row ID.
logical_id: StringLogical ID of the node.
kind: StringNode kind.
properties: StringJSON-encoded node properties.
last_accessed_at: Option<i64>Unix timestamp of last access, if tracked.
Trait Implementations§
impl Eq for NodeRow
impl StructuralPartialEq for NodeRow
Auto Trait Implementations§
impl Freeze for NodeRow
impl RefUnwindSafe for NodeRow
impl Send for NodeRow
impl Sync for NodeRow
impl Unpin for NodeRow
impl UnsafeUnpin for NodeRow
impl UnwindSafe for NodeRow
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.