pub struct UpdateInventoryItemRequest {
pub is_archived: Option<bool>,
pub is_seen: Option<bool>,
pub user_attributes: Option<InventoryUserAttributes>,
}Fields§
§is_archived: Option<bool>§is_seen: Option<bool>§user_attributes: Option<InventoryUserAttributes>Implementations§
Source§impl UpdateInventoryItemRequest
impl UpdateInventoryItemRequest
pub fn new() -> UpdateInventoryItemRequest
Trait Implementations§
Source§impl Clone for UpdateInventoryItemRequest
impl Clone for UpdateInventoryItemRequest
Source§fn clone(&self) -> UpdateInventoryItemRequest
fn clone(&self) -> UpdateInventoryItemRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateInventoryItemRequest
impl Debug for UpdateInventoryItemRequest
Source§impl Default for UpdateInventoryItemRequest
impl Default for UpdateInventoryItemRequest
Source§fn default() -> UpdateInventoryItemRequest
fn default() -> UpdateInventoryItemRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateInventoryItemRequest
impl<'de> Deserialize<'de> for UpdateInventoryItemRequest
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
impl StructuralPartialEq for UpdateInventoryItemRequest
Auto Trait Implementations§
impl Freeze for UpdateInventoryItemRequest
impl RefUnwindSafe for UpdateInventoryItemRequest
impl Send for UpdateInventoryItemRequest
impl Sync for UpdateInventoryItemRequest
impl Unpin for UpdateInventoryItemRequest
impl UnsafeUnpin for UpdateInventoryItemRequest
impl UnwindSafe for UpdateInventoryItemRequest
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