#[non_exhaustive]pub enum Consuming {
Consuming,
NonConsuming,
PreConsuming,
PostConsuming,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Consuming
Daml consuming choice.
NonConsuming
Daml nonconsuming choice.
PreConsuming
Legacy/pre-Daml-3 preconsuming spelling.
PostConsuming
Legacy/pre-Daml-3 postconsuming spelling.
Trait Implementations§
impl Copy for Consuming
impl Eq for Consuming
impl StructuralPartialEq for Consuming
Auto Trait Implementations§
impl Freeze for Consuming
impl RefUnwindSafe for Consuming
impl Send for Consuming
impl Sync for Consuming
impl Unpin for Consuming
impl UnsafeUnpin for Consuming
impl UnwindSafe for Consuming
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