pub struct WarehouseCutoffTime {
pub hour: Option<i32>,
pub minute: Option<i32>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§hour: Option<i32>Required. Hour (24-hour clock) of the cutoff time until which an order has to be placed to be processed in the same day by the warehouse. Hour is based on the timezone of warehouse.
minute: Option<i32>Required. Minute of the cutoff time until which an order has to be placed to be processed in the same day by the warehouse. Minute is based on the timezone of warehouse.
Trait Implementations§
Source§impl Clone for WarehouseCutoffTime
impl Clone for WarehouseCutoffTime
Source§fn clone(&self) -> WarehouseCutoffTime
fn clone(&self) -> WarehouseCutoffTime
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 WarehouseCutoffTime
impl Debug for WarehouseCutoffTime
Source§impl Default for WarehouseCutoffTime
impl Default for WarehouseCutoffTime
Source§fn default() -> WarehouseCutoffTime
fn default() -> WarehouseCutoffTime
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WarehouseCutoffTime
impl<'de> Deserialize<'de> for WarehouseCutoffTime
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 Serialize for WarehouseCutoffTime
impl Serialize for WarehouseCutoffTime
impl Part for WarehouseCutoffTime
Auto Trait Implementations§
impl Freeze for WarehouseCutoffTime
impl RefUnwindSafe for WarehouseCutoffTime
impl Send for WarehouseCutoffTime
impl Sync for WarehouseCutoffTime
impl Unpin for WarehouseCutoffTime
impl UnwindSafe for WarehouseCutoffTime
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