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)