pub struct ProductListAttributes {
pub customer_id: u64,
pub name: String,
pub date_created: String,
pub product_list_id: u64,
pub slug: String,
pub item_count: u64,
}Expand description
Attributes for a product list resource.
Fields§
§customer_id: u64The identifier of the customer who owns this list.
name: StringThe display name of the product list.
date_created: StringThe date the list was created (ISO 8601 string).
product_list_id: u64The unique identifier for this product list.
slug: StringThe URL slug for this product list.
item_count: u64The number of items currently in this product list.
Trait Implementations§
Source§impl Clone for ProductListAttributes
impl Clone for ProductListAttributes
Source§fn clone(&self) -> ProductListAttributes
fn clone(&self) -> ProductListAttributes
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 ProductListAttributes
impl Debug for ProductListAttributes
Source§impl<'de> Deserialize<'de> for ProductListAttributes
impl<'de> Deserialize<'de> for ProductListAttributes
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 ProductListAttributes
impl RefUnwindSafe for ProductListAttributes
impl Send for ProductListAttributes
impl Sync for ProductListAttributes
impl Unpin for ProductListAttributes
impl UnsafeUnpin for ProductListAttributes
impl UnwindSafe for ProductListAttributes
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