pub enum ComputedValueId<'a> {
FieldSize(&'a str),
FieldElementSize(&'a str),
FieldCount(&'a str),
Custom(u16),
}
Variants§
Trait Implementations§
source§impl<'a> Clone for ComputedValueId<'a>
impl<'a> Clone for ComputedValueId<'a>
source§fn clone(&self) -> ComputedValueId<'a>
fn clone(&self) -> ComputedValueId<'a>
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<'a> Debug for ComputedValueId<'a>
impl<'a> Debug for ComputedValueId<'a>
source§impl<'a> Hash for ComputedValueId<'a>
impl<'a> Hash for ComputedValueId<'a>
source§impl<'a> PartialEq for ComputedValueId<'a>
impl<'a> PartialEq for ComputedValueId<'a>
source§fn eq(&self, other: &ComputedValueId<'a>) -> bool
fn eq(&self, other: &ComputedValueId<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<'a> Copy for ComputedValueId<'a>
impl<'a> Eq for ComputedValueId<'a>
impl<'a> StructuralEq for ComputedValueId<'a>
impl<'a> StructuralPartialEq for ComputedValueId<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for ComputedValueId<'a>
impl<'a> Send for ComputedValueId<'a>
impl<'a> Sync for ComputedValueId<'a>
impl<'a> Unpin for ComputedValueId<'a>
impl<'a> UnwindSafe for ComputedValueId<'a>
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