pub struct EdgeSpec {
pub from: i64,
pub to: i64,
pub edge_type: String,
pub data: Value,
}Expand description
Edge specification for insertion operations.
Fields§
§from: i64§to: i64§edge_type: String§data: ValueTrait Implementations§
Auto Trait Implementations§
impl Freeze for EdgeSpec
impl RefUnwindSafe for EdgeSpec
impl Send for EdgeSpec
impl Sync for EdgeSpec
impl Unpin for EdgeSpec
impl UnwindSafe for EdgeSpec
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