pub struct Vehicle<'a> {
pub v_vehiclekey: i64,
pub v_mfgr: VehicleManufacturerName,
pub v_brand: VehicleBrandName,
pub v_type: &'a str,
pub v_license: &'a str,
}Expand description
The VEHICLE table
The Display trait is implemented to format the line item data as a string in the default SpatialBench ‘tbl’ format.
1|goldenrod lavender spring chocolate lace|Manufacturer#1|Brand#13|PROMO BURNISHED COPPER|7|JUMBO PKG|901.00|ly. slyly ironi|
2|blush thistle blue yellow saddle|Manufacturer#1|Brand#13|LARGE BRUSHED BRASS|1|LG CASE|902.00|lar accounts amo|Fields§
§v_vehiclekey: i64Primary key
v_mfgr: VehicleManufacturerNameVehicle manufacturer.
v_brand: VehicleBrandNameVehicle brand.
v_type: &'a strVehicle type
v_license: &'a strVariable length comment
Trait Implementations§
impl<'a> StructuralPartialEq for Vehicle<'a>
Auto Trait Implementations§
impl<'a> Freeze for Vehicle<'a>
impl<'a> RefUnwindSafe for Vehicle<'a>
impl<'a> Send for Vehicle<'a>
impl<'a> Sync for Vehicle<'a>
impl<'a> Unpin for Vehicle<'a>
impl<'a> UnsafeUnpin for Vehicle<'a>
impl<'a> UnwindSafe for Vehicle<'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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more