pub enum TransactionItem {
CatalogItem {
price_id: PriceID,
quantity: u32,
},
NonCatalogItem {
price: TransactionItemNonCatalogPrice,
quantity: u32,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TransactionItem
impl RefUnwindSafe for TransactionItem
impl Send for TransactionItem
impl Sync for TransactionItem
impl Unpin for TransactionItem
impl UnwindSafe for TransactionItem
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