pub struct PoLine {
pub sku: String,
pub description: String,
pub quantity: f64,
pub unit_price: f64,
pub total: f64,
pub received_qty: f64,
}Fields§
§sku: String§description: String§quantity: f64§unit_price: f64§total: f64§received_qty: f64Trait Implementations§
Source§impl<'de> Deserialize<'de> for PoLine
impl<'de> Deserialize<'de> for PoLine
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 PoLine
impl RefUnwindSafe for PoLine
impl Send for PoLine
impl Sync for PoLine
impl Unpin for PoLine
impl UnsafeUnpin for PoLine
impl UnwindSafe for PoLine
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