pub struct PartSupp<'a> {
pub ps_partkey: i64,
pub ps_suppkey: i64,
pub ps_availqty: i32,
pub ps_supplycost: TPCHDecimal,
pub ps_comment: &'a str,
}Expand description
The PARTSUPP (part supplier) table
The Display trait is implemented to format the line item data as a string in the default TPC-H ‘tbl’ format.
1|2|3325|771.64|, even theodolites. regular, final theodolites eat after the carefully pending foxes. ...
1|4|8076|993.49|ven ideas. quickly even packages print. pending multipliers must have to are fluff|Fields§
§ps_partkey: i64Primary key, foreign key to PART
ps_suppkey: i64Primary key, foreign key to SUPPLIER
ps_availqty: i32Available quantity
ps_supplycost: TPCHDecimalSupplier cost
ps_comment: &'a strVariable length comment
Trait Implementations§
impl<'a> StructuralPartialEq for PartSupp<'a>
Auto Trait Implementations§
impl<'a> Freeze for PartSupp<'a>
impl<'a> RefUnwindSafe for PartSupp<'a>
impl<'a> Send for PartSupp<'a>
impl<'a> Sync for PartSupp<'a>
impl<'a> Unpin for PartSupp<'a>
impl<'a> UnwindSafe for PartSupp<'a>
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