pub struct WorkerWithdrawItemView {
pub template: String,
pub qty: u32,
pub all: bool,
}Expand description
One withdraw line for a WithdrawFrom route stop view.
Fields§
§template: String§qty: u32§all: boolTake every stack of this template (carry-capped). Wins over qty.
Trait Implementations§
Source§impl Clone for WorkerWithdrawItemView
impl Clone for WorkerWithdrawItemView
Source§fn clone(&self) -> WorkerWithdrawItemView
fn clone(&self) -> WorkerWithdrawItemView
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 WorkerWithdrawItemView
impl Debug for WorkerWithdrawItemView
Source§impl<'de> Deserialize<'de> for WorkerWithdrawItemView
impl<'de> Deserialize<'de> for WorkerWithdrawItemView
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WorkerWithdrawItemView
impl PartialEq for WorkerWithdrawItemView
Source§impl Serialize for WorkerWithdrawItemView
impl Serialize for WorkerWithdrawItemView
impl StructuralPartialEq for WorkerWithdrawItemView
Auto Trait Implementations§
impl Freeze for WorkerWithdrawItemView
impl RefUnwindSafe for WorkerWithdrawItemView
impl Send for WorkerWithdrawItemView
impl Sync for WorkerWithdrawItemView
impl Unpin for WorkerWithdrawItemView
impl UnsafeUnpin for WorkerWithdrawItemView
impl UnwindSafe for WorkerWithdrawItemView
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