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§
Sourcefn get_vehicle_id(&self) -> Option<&String>
fn get_vehicle_id(&self) -> Option<&String>
Gets VehicleId property.
Sourcefn set_vehicle_id(&mut self, value: String) -> &mut Self
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.