pub struct Workspace {
pub unknown_parents: Vec<UnknownParent>,
pub parents: HashSet<SerializedEdge>,
pub pseudo: Vec<(Vertex<ChangeId>, SerializedEdge)>,
pub graphs: Graphs,
pub covered_parents: HashSet<(Vertex<ChangeId>, Vertex<ChangeId>)>,
pub files: HashSet<Vertex<ChangeId>>,
/* private fields */
}Fields§
§unknown_parents: Vec<UnknownParent>§parents: HashSet<SerializedEdge>§pseudo: Vec<(Vertex<ChangeId>, SerializedEdge)>§graphs: Graphs§covered_parents: HashSet<(Vertex<ChangeId>, Vertex<ChangeId>)>§files: HashSet<Vertex<ChangeId>>Implementations§
Source§impl Workspace
impl Workspace
pub fn load_graph<T: GraphTxnT>( &mut self, txn: &T, channel: &T::Graph, inode: Position<Option<Hash>>, ) -> Result<Option<&LoadedGraph>, InconsistentChange<T::GraphError>>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Workspace
impl RefUnwindSafe for Workspace
impl Send for Workspace
impl Sync for Workspace
impl Unpin for Workspace
impl UnsafeUnpin for Workspace
impl UnwindSafe for Workspace
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