pub struct FulfillmentTime {
pub start_time: Option<String>,
pub end_time: Option<String>,
}Expand description
FulfillmentTime : Input for fulfillment time details
Fields§
§start_time: Option<String>The date, time in UTC of the fulfillment start time in ISO 8601 format.
end_time: Option<String>The date, time in UTC of the fulfillment end time in ISO 8601 format.
Implementations§
Source§impl FulfillmentTime
impl FulfillmentTime
Sourcepub fn new() -> FulfillmentTime
pub fn new() -> FulfillmentTime
Input for fulfillment time details
Trait Implementations§
Source§impl Clone for FulfillmentTime
impl Clone for FulfillmentTime
Source§fn clone(&self) -> FulfillmentTime
fn clone(&self) -> FulfillmentTime
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 FulfillmentTime
impl Debug for FulfillmentTime
Source§impl Default for FulfillmentTime
impl Default for FulfillmentTime
Source§fn default() -> FulfillmentTime
fn default() -> FulfillmentTime
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FulfillmentTime
impl<'de> Deserialize<'de> for FulfillmentTime
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 PartialEq for FulfillmentTime
impl PartialEq for FulfillmentTime
Source§impl Serialize for FulfillmentTime
impl Serialize for FulfillmentTime
impl StructuralPartialEq for FulfillmentTime
Auto Trait Implementations§
impl Freeze for FulfillmentTime
impl RefUnwindSafe for FulfillmentTime
impl Send for FulfillmentTime
impl Sync for FulfillmentTime
impl Unpin for FulfillmentTime
impl UnsafeUnpin for FulfillmentTime
impl UnwindSafe for FulfillmentTime
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