pub struct Equipment {
pub type_code: String,
pub temperature_c: Option<(f32, f32)>,
pub extrinsic: Option<HashMap<String, String>>,
}Expand description
Equipment / container / trailer requirements
Fields§
§type_code: StringExamples: “Box Truck 7.5t”, “13.6m tautliner”, “40HC”, “20DV”, “Reefer Trailer”
temperature_c: Option<(f32, f32)>Temperature range if controlled transport is needed (min, max)
extrinsic: Option<HashMap<String, String>>Free slots for axle/weight/class, door type, etc.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Equipment
impl<'de> Deserialize<'de> for Equipment
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for Equipment
impl JsonSchema for Equipment
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for Equipment
impl RefUnwindSafe for Equipment
impl Send for Equipment
impl Sync for Equipment
impl Unpin for Equipment
impl UnwindSafe for Equipment
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