pub enum Accessorial {
TailLift,
InsidePickup,
InsideDelivery,
Appointment,
Hazardous,
TempControl,
Customs,
Residential,
Detention,
WhiteGlove,
Other(String),
}Expand description
Accessorial services (used to add cost / constraints on the delivery)
Variants§
TailLift
Liftgate
InsidePickup
InsideDelivery
Appointment
Requires time-slot booking
Hazardous
Hazardous material handling
TempControl
Temperature managed transport
Customs
Brokerage / Clearance service
Residential
Non-Commercial or limited access
Detention
Billable waiting time
WhiteGlove
Special handling / installation
Other(String)
Any other option, represented as string
Trait Implementations§
Source§impl Clone for Accessorial
impl Clone for Accessorial
Source§fn clone(&self) -> Accessorial
fn clone(&self) -> Accessorial
Returns a duplicate 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 Accessorial
impl Debug for Accessorial
Source§impl<'de> Deserialize<'de> for Accessorial
impl<'de> Deserialize<'de> for Accessorial
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 Accessorial
impl JsonSchema for Accessorial
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 moreSource§impl PartialEq for Accessorial
impl PartialEq for Accessorial
Source§impl Serialize for Accessorial
impl Serialize for Accessorial
impl Eq for Accessorial
impl StructuralPartialEq for Accessorial
Auto Trait Implementations§
impl Freeze for Accessorial
impl RefUnwindSafe for Accessorial
impl Send for Accessorial
impl Sync for Accessorial
impl Unpin for Accessorial
impl UnsafeUnpin for Accessorial
impl UnwindSafe for Accessorial
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