pub struct Stop {
pub function_code: FunctionCode,
pub location_identification: Option<Box<Location>>,
pub arrival_time: Option<String>,
pub departure_time: Option<String>,
}Expand description
Stop : Contractual or operational port or point relevant to the movement of the cargo.
Fields
function_code: FunctionCodeProvide the function code.
location_identification: Option<Box<Location>>arrival_time: Option<String>Date and time of the arrival of the cargo.
departure_time: Option<String>Date and time of the departure of the cargo.
Implementations
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Stop
impl<'de> Deserialize<'de> for Stop
sourcefn 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
impl StructuralPartialEq for Stop
Auto Trait Implementations
impl RefUnwindSafe for Stop
impl Send for Stop
impl Sync for Stop
impl Unpin for Stop
impl UnwindSafe for Stop
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more