pub struct Nation<'a> {
pub n_nationkey: i64,
pub n_name: &'a str,
pub n_regionkey: i64,
pub n_comment: &'a str,
}Expand description
The NATION table
The Display trait is implemented to format the line item data as a string in the default TPC-H ‘tbl’ format.
0|ALGERIA|0| haggle. carefully final deposits detect slyly agai|
1|ARGENTINA|1|al foxes promise slyly according to the regular accounts. bold requests alon|Fields§
§n_nationkey: i64Primary key (0-24)
n_name: &'a strNation name
n_regionkey: i64Foreign key to REGION
n_comment: &'a strVariable length comment
Implementations§
Trait Implementations§
impl<'a> Eq for Nation<'a>
impl<'a> StructuralPartialEq for Nation<'a>
Auto Trait Implementations§
impl<'a> Freeze for Nation<'a>
impl<'a> RefUnwindSafe for Nation<'a>
impl<'a> Send for Nation<'a>
impl<'a> Sync for Nation<'a>
impl<'a> Unpin for Nation<'a>
impl<'a> UnwindSafe for Nation<'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