pub struct PickLine {
pub sku: String,
pub quantity: f64,
pub from_location: String,
pub picked_qty: f64,
pub status: String,
}Fields§
§sku: String§quantity: f64§from_location: String§picked_qty: f64§status: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for PickLine
impl<'de> Deserialize<'de> for PickLine
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
Auto Trait Implementations§
impl Freeze for PickLine
impl RefUnwindSafe for PickLine
impl Send for PickLine
impl Sync for PickLine
impl Unpin for PickLine
impl UnsafeUnpin for PickLine
impl UnwindSafe for PickLine
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