Struct tpch_bench::query_6::tables::LineItemTuple
source · [−]#[repr(packed)]pub struct LineItemTuple {
pub shipdate: i32,
pub discount: i32,
pub quantity: i32,
pub extendedprice: i32,
}
Expand description
A materialized LineItem tuple
Mainly used to calculate the size of a tuple for TPC-H Query 6.
Fields
shipdate: i32
discount: i32
quantity: i32
extendedprice: i32
Auto Trait Implementations
impl RefUnwindSafe for LineItemTuple
impl Send for LineItemTuple
impl Sync for LineItemTuple
impl Unpin for LineItemTuple
impl UnwindSafe for LineItemTuple
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more