pub struct Aworset<E>{
pub id: NodeId,
pub cc: HashSet<(NodeId, u64)>,
pub set: HashSet<(NodeId, E, u64)>,
pub local_counter: u64,
}Fields§
§id: NodeId§cc: HashSet<(NodeId, u64)>§set: HashSet<(NodeId, E, u64)>§local_counter: u64Implementations§
Trait Implementations§
impl<E> Eq for Aworset<E>
impl<E> StructuralPartialEq for Aworset<E>
Auto Trait Implementations§
impl<E> Freeze for Aworset<E>
impl<E> RefUnwindSafe for Aworset<E>where
E: RefUnwindSafe,
impl<E> Send for Aworset<E>where
E: Send,
impl<E> Sync for Aworset<E>where
E: Sync,
impl<E> Unpin for Aworset<E>where
E: Unpin,
impl<E> UnwindSafe for Aworset<E>where
E: UnwindSafe,
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