Struct amazon_sp_listings_items::models::listings_item_patch_request::ListingsItemPatchRequest
source · [−]pub struct ListingsItemPatchRequest {
pub product_type: String,
pub patches: Vec<PatchOperation>,
}Expand description
ListingsItemPatchRequest : The request body schema for the patchListingsItem operation.
Fields
product_type: StringThe Amazon product type of the listings item.
patches: Vec<PatchOperation>One or more JSON Patch operations to perform on the listings item.
Implementations
sourceimpl ListingsItemPatchRequest
impl ListingsItemPatchRequest
sourcepub fn new(
product_type: String,
patches: Vec<PatchOperation>
) -> ListingsItemPatchRequest
pub fn new(
product_type: String,
patches: Vec<PatchOperation>
) -> ListingsItemPatchRequest
The request body schema for the patchListingsItem operation.
Trait Implementations
sourceimpl Clone for ListingsItemPatchRequest
impl Clone for ListingsItemPatchRequest
sourcefn clone(&self) -> ListingsItemPatchRequest
fn clone(&self) -> ListingsItemPatchRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ListingsItemPatchRequest
impl Debug for ListingsItemPatchRequest
sourceimpl Default for ListingsItemPatchRequest
impl Default for ListingsItemPatchRequest
sourcefn default() -> ListingsItemPatchRequest
fn default() -> ListingsItemPatchRequest
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ListingsItemPatchRequest
impl<'de> Deserialize<'de> for ListingsItemPatchRequest
sourcefn 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
sourceimpl PartialEq<ListingsItemPatchRequest> for ListingsItemPatchRequest
impl PartialEq<ListingsItemPatchRequest> for ListingsItemPatchRequest
sourcefn eq(&self, other: &ListingsItemPatchRequest) -> bool
fn eq(&self, other: &ListingsItemPatchRequest) -> bool
sourceimpl Serialize for ListingsItemPatchRequest
impl Serialize for ListingsItemPatchRequest
impl StructuralPartialEq for ListingsItemPatchRequest
Auto Trait Implementations
impl RefUnwindSafe for ListingsItemPatchRequest
impl Send for ListingsItemPatchRequest
impl Sync for ListingsItemPatchRequest
impl Unpin for ListingsItemPatchRequest
impl UnwindSafe for ListingsItemPatchRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more