pub struct GoodsReceipt {
pub id: String,
pub po_id: String,
pub lines: Vec<ReceiptLine>,
pub received_by: String,
pub received_at: String,
pub notes: Option<String>,
}Fields§
§id: String§po_id: String§lines: Vec<ReceiptLine>§received_by: String§received_at: String§notes: Option<String>Trait Implementations§
Source§impl Clone for GoodsReceipt
impl Clone for GoodsReceipt
Source§fn clone(&self) -> GoodsReceipt
fn clone(&self) -> GoodsReceipt
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 GoodsReceipt
impl Debug for GoodsReceipt
Source§impl<'de> Deserialize<'de> for GoodsReceipt
impl<'de> Deserialize<'de> for GoodsReceipt
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 GoodsReceipt
impl RefUnwindSafe for GoodsReceipt
impl Send for GoodsReceipt
impl Sync for GoodsReceipt
impl Unpin for GoodsReceipt
impl UnsafeUnpin for GoodsReceipt
impl UnwindSafe for GoodsReceipt
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