pub enum ValidSystemEvent {
StockReserved(Sku, Quantity),
RefundIssued(Money),
ReservationReleased(Sku, Quantity),
ReservedShipmentConfirmed(Sku, Quantity),
TaxLiabilityRecorded(Money),
CrmProjected,
LogisticsProjected,
}Variants§
StockReserved(Sku, Quantity)
RefundIssued(Money)
ReservationReleased(Sku, Quantity)
ReservedShipmentConfirmed(Sku, Quantity)
TaxLiabilityRecorded(Money)
CrmProjected
LogisticsProjected
Trait Implementations§
Source§impl Clone for ValidSystemEvent
impl Clone for ValidSystemEvent
Source§fn clone(&self) -> ValidSystemEvent
fn clone(&self) -> ValidSystemEvent
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 ValidSystemEvent
impl Debug for ValidSystemEvent
Source§impl PartialEq for ValidSystemEvent
impl PartialEq for ValidSystemEvent
Source§fn eq(&self, other: &ValidSystemEvent) -> bool
fn eq(&self, other: &ValidSystemEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ValidSystemEvent
impl StructuralPartialEq for ValidSystemEvent
Auto Trait Implementations§
impl Freeze for ValidSystemEvent
impl RefUnwindSafe for ValidSystemEvent
impl Send for ValidSystemEvent
impl Sync for ValidSystemEvent
impl Unpin for ValidSystemEvent
impl UnsafeUnpin for ValidSystemEvent
impl UnwindSafe for ValidSystemEvent
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