pub struct OwnOrderPosition {Show 20 fields
pub Id: i32,
pub No: i32,
pub SetHeaderId: Option<i32>,
pub ProductId: Option<i32>,
pub ProductCode: String,
pub Description: String,
pub Quantity: Decimal,
pub WrittenQuantity: Decimal,
pub EnteredQuantity: Decimal,
pub UnitOfMeasurement: String,
pub WrittenUnitOfMeasurement: String,
pub EnteredUnitOfMeasurement: String,
pub VatRate: Option<VatRateBase>,
pub PriceKind: enumPriceKind,
pub PriceValuePLN: Decimal,
pub PriceValue: Decimal,
pub NetValuePLN: Decimal,
pub NetValue: Decimal,
pub VatValuePLN: Decimal,
pub GrossValue: Decimal,
}Expand description
WebAPI model OwnOrderPosition.
Fields§
§Id: i32§No: i32§SetHeaderId: Option<i32>§ProductId: Option<i32>§ProductCode: String§Description: String§Quantity: Decimal§WrittenQuantity: Decimal§EnteredQuantity: Decimal§UnitOfMeasurement: String§WrittenUnitOfMeasurement: String§EnteredUnitOfMeasurement: String§VatRate: Option<VatRateBase>§PriceKind: enumPriceKind§PriceValuePLN: Decimal§PriceValue: Decimal§NetValuePLN: Decimal§NetValue: Decimal§VatValuePLN: Decimal§GrossValue: DecimalTrait Implementations§
Source§impl Clone for OwnOrderPosition
impl Clone for OwnOrderPosition
Source§fn clone(&self) -> OwnOrderPosition
fn clone(&self) -> OwnOrderPosition
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 OwnOrderPosition
impl Debug for OwnOrderPosition
Source§impl<'de> Deserialize<'de> for OwnOrderPosition
impl<'de> Deserialize<'de> for OwnOrderPosition
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 OwnOrderPosition
impl RefUnwindSafe for OwnOrderPosition
impl Send for OwnOrderPosition
impl Sync for OwnOrderPosition
impl Unpin for OwnOrderPosition
impl UnsafeUnpin for OwnOrderPosition
impl UnwindSafe for OwnOrderPosition
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