pub struct RfxLineItem {
pub item_number: u16,
pub description: String,
pub material_id: Option<String>,
pub quantity: Decimal,
pub uom: String,
pub target_price: Option<Decimal>,
}Expand description
Line item within an RFx.
Fields§
§item_number: u16Item number
description: StringMaterial/service description
material_id: Option<String>Material ID (if applicable)
quantity: DecimalRequired quantity
uom: StringUnit of measure
target_price: Option<Decimal>Target unit price (budget)
Trait Implementations§
Source§impl Clone for RfxLineItem
impl Clone for RfxLineItem
Source§fn clone(&self) -> RfxLineItem
fn clone(&self) -> RfxLineItem
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 RfxLineItem
impl Debug for RfxLineItem
Source§impl<'de> Deserialize<'de> for RfxLineItem
impl<'de> Deserialize<'de> for RfxLineItem
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 RfxLineItem
impl RefUnwindSafe for RfxLineItem
impl Send for RfxLineItem
impl Sync for RfxLineItem
impl Unpin for RfxLineItem
impl UnwindSafe for RfxLineItem
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