pub struct InventoryCount {
pub calculated_at: Option<String>,
pub catalog_object_id: Option<String>,
pub catalog_object_type: Option<CatalogObjectType>,
pub is_estimated: Option<bool>,
pub location_id: Option<String>,
pub quantity: Option<String>,
pub state: Option<InventoryState>,
}Fields§
§calculated_at: Option<String>§catalog_object_id: Option<String>§catalog_object_type: Option<CatalogObjectType>§is_estimated: Option<bool>§location_id: Option<String>§quantity: Option<String>§state: Option<InventoryState>Trait Implementations§
Source§impl Clone for InventoryCount
impl Clone for InventoryCount
Source§fn clone(&self) -> InventoryCount
fn clone(&self) -> InventoryCount
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 InventoryCount
impl Debug for InventoryCount
Source§impl<'de> Deserialize<'de> for InventoryCount
impl<'de> Deserialize<'de> for InventoryCount
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
Auto Trait Implementations§
impl Freeze for InventoryCount
impl RefUnwindSafe for InventoryCount
impl Send for InventoryCount
impl Sync for InventoryCount
impl Unpin for InventoryCount
impl UnwindSafe for InventoryCount
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