pub struct ReservationDelivery {
pub Id: i32,
pub Code: String,
pub Date: NaiveDateTime,
pub Quantity: Decimal,
pub RealizedQuantity: Decimal,
pub Value: Decimal,
}Expand description
WebAPI model ReservationDelivery.
Fields§
§Id: i32§Code: String§Date: NaiveDateTime§Quantity: Decimal§RealizedQuantity: Decimal§Value: DecimalTrait Implementations§
Source§impl Clone for ReservationDelivery
impl Clone for ReservationDelivery
Source§fn clone(&self) -> ReservationDelivery
fn clone(&self) -> ReservationDelivery
Returns a duplicate of the value. Read more
1.0.0 · 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 ReservationDelivery
impl Debug for ReservationDelivery
Source§impl<'de> Deserialize<'de> for ReservationDelivery
impl<'de> Deserialize<'de> for ReservationDelivery
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 ReservationDelivery
impl RefUnwindSafe for ReservationDelivery
impl Send for ReservationDelivery
impl Sync for ReservationDelivery
impl Unpin for ReservationDelivery
impl UnsafeUnpin for ReservationDelivery
impl UnwindSafe for ReservationDelivery
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