pub enum AttributeValueType {
AttributeValueTypeInt(i64, i64),
AttributeValueTypeHex(i64, i64),
AttributeValueTypeFloat(f64, f64),
AttributeValueTypeString,
AttributeValueTypeEnum(Vec<String>),
}
Variants§
AttributeValueTypeInt(i64, i64)
AttributeValueTypeHex(i64, i64)
AttributeValueTypeFloat(f64, f64)
AttributeValueTypeString
AttributeValueTypeEnum(Vec<String>)
Trait Implementations§
Source§impl Clone for AttributeValueType
impl Clone for AttributeValueType
Source§fn clone(&self) -> AttributeValueType
fn clone(&self) -> AttributeValueType
Returns a copy 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 AttributeValueType
impl Debug for AttributeValueType
Source§impl PartialEq for AttributeValueType
impl PartialEq for AttributeValueType
impl StructuralPartialEq for AttributeValueType
Auto Trait Implementations§
impl Freeze for AttributeValueType
impl RefUnwindSafe for AttributeValueType
impl Send for AttributeValueType
impl Sync for AttributeValueType
impl Unpin for AttributeValueType
impl UnwindSafe for AttributeValueType
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