Enum can_dbc::AttributeValueType
source · 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
sourceimpl Clone for AttributeValueType
impl Clone for AttributeValueType
sourcefn clone(&self) -> AttributeValueType
fn clone(&self) -> AttributeValueType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for AttributeValueType
impl Debug for AttributeValueType
sourceimpl PartialEq<AttributeValueType> for AttributeValueType
impl PartialEq<AttributeValueType> for AttributeValueType
sourcefn eq(&self, other: &AttributeValueType) -> bool
fn eq(&self, other: &AttributeValueType) -> bool
impl StructuralPartialEq for AttributeValueType
Auto Trait Implementations
impl RefUnwindSafe for AttributeValueType
impl Send for AttributeValueType
impl Sync for AttributeValueType
impl Unpin for AttributeValueType
impl UnwindSafe for AttributeValueType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more