pub struct CatalogItemOption {
pub description: Option<String>,
pub display_name: Option<String>,
pub name: Option<String>,
pub show_colors: Option<bool>,
pub values: Option<CatalogItemOptionValue>,
}Fields§
§description: Option<String>§display_name: Option<String>§name: Option<String>§show_colors: Option<bool>§values: Option<CatalogItemOptionValue>Trait Implementations§
Source§impl Clone for CatalogItemOption
impl Clone for CatalogItemOption
Source§fn clone(&self) -> CatalogItemOption
fn clone(&self) -> CatalogItemOption
Returns a duplicate of the value. Read more
1.0.0 · 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 CatalogItemOption
impl Debug for CatalogItemOption
Source§impl<'de> Deserialize<'de> for CatalogItemOption
impl<'de> Deserialize<'de> for CatalogItemOption
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 CatalogItemOption
impl RefUnwindSafe for CatalogItemOption
impl Send for CatalogItemOption
impl Sync for CatalogItemOption
impl Unpin for CatalogItemOption
impl UnwindSafe for CatalogItemOption
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