pub struct HashBijection<'a, 'b, A: ?Sized = BlankIdBuf, B: ?Sized = BlankIdBuf> {
    pub forward: HashMap<&'a A, &'b B>,
    pub backward: HashMap<&'b B, &'a A>,
}Expand description
Blank node identifier bijection between two (isomorphic) datasets.
Fields§
§forward: HashMap<&'a A, &'b B>§backward: HashMap<&'b B, &'a A>Trait Implementations§
Auto Trait Implementations§
impl<'a, 'b, A, B> Freeze for HashBijection<'a, 'b, A, B>
impl<'a, 'b, A, B> RefUnwindSafe for HashBijection<'a, 'b, A, B>
impl<'a, 'b, A, B> Send for HashBijection<'a, 'b, A, B>
impl<'a, 'b, A, B> Sync for HashBijection<'a, 'b, A, B>
impl<'a, 'b, A, B> Unpin for HashBijection<'a, 'b, A, B>
impl<'a, 'b, A, B> UnwindSafe for HashBijection<'a, 'b, A, B>
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