pub struct PartialOrder<L, E, OS, POS> { /* private fields */ }Expand description
Struct for processing p2panda operations into a partial order based on dependencies expressed
in their previous field.
This struct is a thin wrapper around ordering::PartialOrder struct which takes care of sorting
the operation dependency graph into a partial order. Here we have the addition of a LogStore
and OperationStore implementation (traits from p2panda-store).
Implementations§
Source§impl<L, E, OS, POS> PartialOrder<L, E, OS, POS>
impl<L, E, OS, POS> PartialOrder<L, E, OS, POS>
Trait Implementations§
Auto Trait Implementations§
impl<L, E, OS, POS> Freeze for PartialOrder<L, E, OS, POS>
impl<L, E, OS, POS> RefUnwindSafe for PartialOrder<L, E, OS, POS>
impl<L, E, OS, POS> Send for PartialOrder<L, E, OS, POS>
impl<L, E, OS, POS> Sync for PartialOrder<L, E, OS, POS>
impl<L, E, OS, POS> Unpin for PartialOrder<L, E, OS, POS>
impl<L, E, OS, POS> UnwindSafe for PartialOrder<L, E, OS, POS>
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