Trait VehicleIdDimension

Source
pub trait VehicleIdDimension {
    // Required methods
    fn get_vehicle_id(&self) -> Option<&String>;
    fn set_vehicle_id(&mut self, value: String) -> &mut Self;
}
Expand description

Extends Dimensions within a new VehicleIdDimension.

Required Methods§

Source

fn get_vehicle_id(&self) -> Option<&String>

Gets VehicleId property.

Source

fn set_vehicle_id(&mut self, value: String) -> &mut Self

Sets VehicleId property.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§