#[repr(C)]pub enum VehicleModelType {
Show 18 variants
Invalid = 0,
Ped = 1,
Automobile = 2,
Plane = 3,
Trailer = 4,
QuadBike = 5,
SubmarineCar = 6,
AmphibiousAutomobile = 7,
AmphibiousQuadBike = 8,
Heli = 9,
Blimp = 10,
Autogyro = 11,
Bike = 12,
Bmx = 13,
Boat = 14,
Train = 15,
Submarine = 16,
Object = 17,
}Variants§
Invalid = 0
Ped = 1
Automobile = 2
Plane = 3
Trailer = 4
QuadBike = 5
SubmarineCar = 6
AmphibiousAutomobile = 7
AmphibiousQuadBike = 8
Heli = 9
Blimp = 10
Autogyro = 11
Bike = 12
Bmx = 13
Boat = 14
Train = 15
Submarine = 16
Object = 17
Trait Implementations§
Source§impl Clone for VehicleModelType
impl Clone for VehicleModelType
Source§fn clone(&self) -> VehicleModelType
fn clone(&self) -> VehicleModelType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VehicleModelType
impl Debug for VehicleModelType
Source§impl Hash for VehicleModelType
impl Hash for VehicleModelType
Source§impl PartialEq for VehicleModelType
impl PartialEq for VehicleModelType
Source§impl TryFrom<u8> for VehicleModelType
impl TryFrom<u8> for VehicleModelType
impl Copy for VehicleModelType
impl Eq for VehicleModelType
impl StructuralPartialEq for VehicleModelType
Auto Trait Implementations§
impl Freeze for VehicleModelType
impl RefUnwindSafe for VehicleModelType
impl Send for VehicleModelType
impl Sync for VehicleModelType
impl Unpin for VehicleModelType
impl UnwindSafe for VehicleModelType
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