pub struct ExportEdge {
pub from: String,
pub to: String,
pub relationship: String,
pub start: Option<u64>,
pub end: Option<u64>,
}Expand description
Serializable edge for export.
Fields§
§from: StringSource variable ID
to: StringTarget variable ID
relationship: StringRelationship type (“owns”, “borrows_immut”, “borrows_mut”)
start: Option<u64>Start timestamp (for borrows)
end: Option<u64>End timestamp (for borrows)
Trait Implementations§
Source§impl Debug for ExportEdge
impl Debug for ExportEdge
Auto Trait Implementations§
impl Freeze for ExportEdge
impl RefUnwindSafe for ExportEdge
impl Send for ExportEdge
impl Sync for ExportEdge
impl Unpin for ExportEdge
impl UnwindSafe for ExportEdge
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