pub struct CatalogCustomAttributeValue {
pub boolean_value: Option<bool>,
pub custom_attribute_definition_id: Option<String>,
pub key: Option<String>,
pub name: Option<String>,
pub number_value: Option<String>,
pub selection_uid_values: Option<Vec<String>>,
pub string_value: Option<String>,
pub type_name: Option<CatalogCustomAttributeDefinitionType>,
}Fields§
§boolean_value: Option<bool>§custom_attribute_definition_id: Option<String>§key: Option<String>§name: Option<String>§number_value: Option<String>§selection_uid_values: Option<Vec<String>>§string_value: Option<String>§type_name: Option<CatalogCustomAttributeDefinitionType>Trait Implementations§
Source§impl Clone for CatalogCustomAttributeValue
impl Clone for CatalogCustomAttributeValue
Source§fn clone(&self) -> CatalogCustomAttributeValue
fn clone(&self) -> CatalogCustomAttributeValue
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 CatalogCustomAttributeValue
impl Debug for CatalogCustomAttributeValue
Source§impl<'de> Deserialize<'de> for CatalogCustomAttributeValue
impl<'de> Deserialize<'de> for CatalogCustomAttributeValue
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 CatalogCustomAttributeValue
impl RefUnwindSafe for CatalogCustomAttributeValue
impl Send for CatalogCustomAttributeValue
impl Sync for CatalogCustomAttributeValue
impl Unpin for CatalogCustomAttributeValue
impl UnwindSafe for CatalogCustomAttributeValue
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