pub struct CategoricalAttribute(/* private fields */);Expand description
Categorical attributes are attributes that have a finite set of values that are not directly comparable (i.e., enumeration).
Trait Implementations§
Source§impl Clone for CategoricalAttribute
impl Clone for CategoricalAttribute
Source§fn clone(&self) -> CategoricalAttribute
fn clone(&self) -> CategoricalAttribute
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 CategoricalAttribute
impl Debug for CategoricalAttribute
Source§impl<'de> Deserialize<'de> for CategoricalAttribute
impl<'de> Deserialize<'de> for CategoricalAttribute
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CategoricalAttribute, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CategoricalAttribute, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&str> for CategoricalAttribute
impl From<&str> for CategoricalAttribute
Source§fn from(value: &str) -> CategoricalAttribute
fn from(value: &str) -> CategoricalAttribute
Converts to this type from the input type.
Source§impl From<CategoricalAttribute> for AttributeValue
impl From<CategoricalAttribute> for AttributeValue
Source§fn from(value: CategoricalAttribute) -> AttributeValue
fn from(value: CategoricalAttribute) -> AttributeValue
Converts to this type from the input type.
Source§impl From<Str> for CategoricalAttribute
impl From<Str> for CategoricalAttribute
Source§fn from(value: Str) -> CategoricalAttribute
fn from(value: Str) -> CategoricalAttribute
Converts to this type from the input type.
Source§impl From<String> for CategoricalAttribute
impl From<String> for CategoricalAttribute
Source§fn from(value: String) -> CategoricalAttribute
fn from(value: String) -> CategoricalAttribute
Converts to this type from the input type.
Source§impl From<bool> for CategoricalAttribute
impl From<bool> for CategoricalAttribute
Source§fn from(value: bool) -> CategoricalAttribute
fn from(value: bool) -> CategoricalAttribute
Converts to this type from the input type.
Source§impl From<f64> for CategoricalAttribute
impl From<f64> for CategoricalAttribute
Source§fn from(value: f64) -> CategoricalAttribute
fn from(value: f64) -> CategoricalAttribute
Converts to this type from the input type.
Source§impl PartialEq for CategoricalAttribute
impl PartialEq for CategoricalAttribute
Source§impl PartialOrd for CategoricalAttribute
impl PartialOrd for CategoricalAttribute
Source§impl Serialize for CategoricalAttribute
impl Serialize for CategoricalAttribute
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 CategoricalAttribute
Auto Trait Implementations§
impl !Freeze for CategoricalAttribute
impl RefUnwindSafe for CategoricalAttribute
impl Send for CategoricalAttribute
impl Sync for CategoricalAttribute
impl Unpin for CategoricalAttribute
impl UnwindSafe for CategoricalAttribute
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