pub struct ProductAttribute {
pub name: String,
pub value: String,
pub group: Option<String>,
pub is_visible: bool,
pub is_variation: bool,
}Expand description
Product attribute
Fields§
§name: String§value: String§group: Option<String>§is_visible: bool§is_variation: boolTrait Implementations§
Source§impl Clone for ProductAttribute
impl Clone for ProductAttribute
Source§fn clone(&self) -> ProductAttribute
fn clone(&self) -> ProductAttribute
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 ProductAttribute
impl Debug for ProductAttribute
Source§impl<'de> Deserialize<'de> for ProductAttribute
impl<'de> Deserialize<'de> for ProductAttribute
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ProductAttribute, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ProductAttribute, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ProductAttribute
Source§impl PartialEq for ProductAttribute
impl PartialEq for ProductAttribute
Source§impl Serialize for ProductAttribute
impl Serialize for ProductAttribute
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ProductAttribute
Auto Trait Implementations§
impl Freeze for ProductAttribute
impl RefUnwindSafe for ProductAttribute
impl Send for ProductAttribute
impl Sync for ProductAttribute
impl Unpin for ProductAttribute
impl UnsafeUnpin for ProductAttribute
impl UnwindSafe for ProductAttribute
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