pub struct Region<'a> {
pub r_regionkey: i64,
pub r_name: &'a str,
pub r_comment: &'a str,
}Expand description
The REGION table
The Display trait is implemented to format the line item data as a string in the default TPC-H ‘tbl’ format.
0|AFRICA|lar deposits. blithely final packages cajole. regular waters are final requests. regular accounts are according to |
1|AMERICA|hs use ironic, even requests. s|Fields§
§r_regionkey: i64Primary key (0-4)
r_name: &'a strRegion name (AFRICA, AMERICA, ASIA, EUROPE, MIDDLE EAST)
r_comment: &'a strVariable length comment
Implementations§
Trait Implementations§
impl<'a> Eq for Region<'a>
impl<'a> StructuralPartialEq for Region<'a>
Auto Trait Implementations§
impl<'a> Freeze for Region<'a>
impl<'a> RefUnwindSafe for Region<'a>
impl<'a> Send for Region<'a>
impl<'a> Sync for Region<'a>
impl<'a> Unpin for Region<'a>
impl<'a> UnwindSafe for Region<'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