pub struct BiDirectionalGraphs<'a> {
pub forward: (&'a Mmap, &'a FxHashMap<Uuid, u64>),
pub reverse: (&'a Mmap, &'a FxHashMap<Uuid, u64>),
}Fields§
§forward: (&'a Mmap, &'a FxHashMap<Uuid, u64>)§reverse: (&'a Mmap, &'a FxHashMap<Uuid, u64>)Auto Trait Implementations§
impl<'a> Freeze for BiDirectionalGraphs<'a>
impl<'a> RefUnwindSafe for BiDirectionalGraphs<'a>
impl<'a> Send for BiDirectionalGraphs<'a>
impl<'a> Sync for BiDirectionalGraphs<'a>
impl<'a> Unpin for BiDirectionalGraphs<'a>
impl<'a> UnwindSafe for BiDirectionalGraphs<'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