pub enum InventoryEvent {
Entry(InventoryEntry),
Progress(InventoryProgress),
Completed(InventoryCompleted),
}Expand description
Event emitted by InventoryStream.
Variants§
Trait Implementations§
Source§impl Clone for InventoryEvent
impl Clone for InventoryEvent
Source§fn clone(&self) -> InventoryEvent
fn clone(&self) -> InventoryEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InventoryEvent
impl Debug for InventoryEvent
Source§impl PartialEq for InventoryEvent
impl PartialEq for InventoryEvent
impl StructuralPartialEq for InventoryEvent
Auto Trait Implementations§
impl Freeze for InventoryEvent
impl RefUnwindSafe for InventoryEvent
impl Send for InventoryEvent
impl Sync for InventoryEvent
impl Unpin for InventoryEvent
impl UnsafeUnpin for InventoryEvent
impl UnwindSafe for InventoryEvent
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