pub enum WithdrawLineMode {
Off,
All,
Qty(u32),
}Expand description
Tri-state of one withdraw line draft: not included, take all, take qty.
Variants§
Trait Implementations§
Source§impl Clone for WithdrawLineMode
impl Clone for WithdrawLineMode
Source§fn clone(&self) -> WithdrawLineMode
fn clone(&self) -> WithdrawLineMode
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 moreimpl Copy for WithdrawLineMode
Source§impl Debug for WithdrawLineMode
impl Debug for WithdrawLineMode
Source§impl PartialEq for WithdrawLineMode
impl PartialEq for WithdrawLineMode
impl StructuralPartialEq for WithdrawLineMode
Auto Trait Implementations§
impl Freeze for WithdrawLineMode
impl RefUnwindSafe for WithdrawLineMode
impl Send for WithdrawLineMode
impl Sync for WithdrawLineMode
impl Unpin for WithdrawLineMode
impl UnsafeUnpin for WithdrawLineMode
impl UnwindSafe for WithdrawLineMode
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