pub enum ExtendedVariable {
V7 = 7,
V8 = 8,
V9 = 9,
V10 = 10,
V11 = 11,
V12 = 12,
}Expand description
An extended data variable identifier.
Variants§
V7 = 7
The first extended variable (v7).
V8 = 8
The second extended variable (v8).
V9 = 9
The third extended variable (v9).
V10 = 10
The fourth extended variable (v10).
V11 = 11
The fifth extended variable (v11).
V12 = 12
The sixth extended variable (v12).
Trait Implementations§
Source§impl Clone for ExtendedVariable
impl Clone for ExtendedVariable
Source§fn clone(&self) -> ExtendedVariable
fn clone(&self) -> ExtendedVariable
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 ExtendedVariable
impl Debug for ExtendedVariable
Source§impl Hash for ExtendedVariable
impl Hash for ExtendedVariable
Source§impl Ord for ExtendedVariable
impl Ord for ExtendedVariable
Source§fn cmp(&self, other: &ExtendedVariable) -> Ordering
fn cmp(&self, other: &ExtendedVariable) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ExtendedVariable
impl PartialEq for ExtendedVariable
Source§impl PartialOrd for ExtendedVariable
impl PartialOrd for ExtendedVariable
Source§impl TryFrom<u8> for ExtendedVariable
impl TryFrom<u8> for ExtendedVariable
impl Copy for ExtendedVariable
impl Eq for ExtendedVariable
impl StructuralPartialEq for ExtendedVariable
Auto Trait Implementations§
impl Freeze for ExtendedVariable
impl RefUnwindSafe for ExtendedVariable
impl Send for ExtendedVariable
impl Sync for ExtendedVariable
impl Unpin for ExtendedVariable
impl UnwindSafe for ExtendedVariable
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