pub struct EdgeRow {
pub edge_id: u64,
pub source_id: u64,
pub target_id: u64,
pub label: String,
pub properties_json: String,
}Expand description
One row from graph-edge persistence, represented as a typed struct so the catalog API stays explicit and clippy-clean.
Fields§
§edge_id: u64§source_id: u64§target_id: u64§label: String§properties_json: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for EdgeRow
impl RefUnwindSafe for EdgeRow
impl Send for EdgeRow
impl Sync for EdgeRow
impl Unpin for EdgeRow
impl UnsafeUnpin for EdgeRow
impl UnwindSafe for EdgeRow
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