pub struct CreateCustomerCommitV1BodySpecifiersItemExcludeItem {
pub product_tags: Vec<String>,
}Expand description
CreateCustomerCommitV1BodySpecifiersItemExcludeItem
JSON schema
{
"type": "object",
"properties": {
"product_tags": {
"description": "If provided, the specifier will not apply to
products with all the specified tags.",
"type": "array",
"items": {
"type": "string"
}
}
}
}Fields§
If provided, the specifier will not apply to products with all the specified tags.
Trait Implementations§
Source§impl Clone for CreateCustomerCommitV1BodySpecifiersItemExcludeItem
impl Clone for CreateCustomerCommitV1BodySpecifiersItemExcludeItem
Source§fn clone(&self) -> CreateCustomerCommitV1BodySpecifiersItemExcludeItem
fn clone(&self) -> CreateCustomerCommitV1BodySpecifiersItemExcludeItem
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<'de> Deserialize<'de> for CreateCustomerCommitV1BodySpecifiersItemExcludeItem
impl<'de> Deserialize<'de> for CreateCustomerCommitV1BodySpecifiersItemExcludeItem
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 CreateCustomerCommitV1BodySpecifiersItemExcludeItem
impl RefUnwindSafe for CreateCustomerCommitV1BodySpecifiersItemExcludeItem
impl Send for CreateCustomerCommitV1BodySpecifiersItemExcludeItem
impl Sync for CreateCustomerCommitV1BodySpecifiersItemExcludeItem
impl Unpin for CreateCustomerCommitV1BodySpecifiersItemExcludeItem
impl UnsafeUnpin for CreateCustomerCommitV1BodySpecifiersItemExcludeItem
impl UnwindSafe for CreateCustomerCommitV1BodySpecifiersItemExcludeItem
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