pub struct InventoryTransfer {Show 13 fields
pub id: Option<String>,
pub catalog_object_id: String,
pub catalog_object_type: Option<String>,
pub created_at: Option<String>,
pub employee_id: Option<String>,
pub from_location_id: String,
pub occurred_at: String,
pub quantity: String,
pub reference_id: Option<String>,
pub source: Option<SourceApplication>,
pub state: InventoryState,
pub team_member_id: Option<String>,
pub to_location_id: String,
}Fields§
§id: Option<String>§catalog_object_id: String§catalog_object_type: Option<String>§created_at: Option<String>§employee_id: Option<String>§from_location_id: String§occurred_at: String§quantity: String§reference_id: Option<String>§source: Option<SourceApplication>§state: InventoryState§team_member_id: Option<String>§to_location_id: StringTrait Implementations§
Source§impl Clone for InventoryTransfer
impl Clone for InventoryTransfer
Source§fn clone(&self) -> InventoryTransfer
fn clone(&self) -> InventoryTransfer
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 InventoryTransfer
impl Debug for InventoryTransfer
Source§impl<'de> Deserialize<'de> for InventoryTransfer
impl<'de> Deserialize<'de> for InventoryTransfer
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 InventoryTransfer
impl RefUnwindSafe for InventoryTransfer
impl Send for InventoryTransfer
impl Sync for InventoryTransfer
impl Unpin for InventoryTransfer
impl UnwindSafe for InventoryTransfer
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