pub struct GraphMut<'a> {
pub ids: &'a IdMap,
pub syms: &'a mut Interner,
pub labels: &'a [u32],
pub props: &'a ColumnStore,
pub topo: &'a mut Topology,
pub edge_props: &'a mut EdgeProps,
}Expand description
Borrowed mutable view of graph state the engine writes derived edges into.
Fields§
§ids: &'a IdMap§syms: &'a mut Interner§labels: &'a [u32]§props: &'a ColumnStore§topo: &'a mut Topology§edge_props: &'a mut EdgePropsAuto Trait Implementations§
impl<'a> !UnwindSafe for GraphMut<'a>
impl<'a> Freeze for GraphMut<'a>
impl<'a> RefUnwindSafe for GraphMut<'a>
impl<'a> Send for GraphMut<'a>
impl<'a> Sync for GraphMut<'a>
impl<'a> Unpin for GraphMut<'a>
impl<'a> UnsafeUnpin for GraphMut<'a>
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