Enum C7SR

Source
pub enum C7SR {
Show 16 variants NOMAPPING, MAP1, MAP2, MAP3, MAP4, MAP5, MAP6, MAP7, MAP8, MAP9, MAP10, MAP11, MAP12, MAP13, MAP14, MAP15,
}
Expand description

Possible values of the field C7S

Variants§

§

NOMAPPING

Default mapping

§

MAP1

Mapping 1

§

MAP2

Mapping 2

§

MAP3

Mapping 3

§

MAP4

Mapping 4

§

MAP5

Mapping 5

§

MAP6

Mapping 6

§

MAP7

Mapping 7

§

MAP8

Mapping 8

§

MAP9

Mapping 9

§

MAP10

Mapping 10

§

MAP11

Mapping 11

§

MAP12

Mapping 12

§

MAP13

Mapping 13

§

MAP14

Mapping 14

§

MAP15

Mapping 15

Implementations§

Source§

impl C7SR

Source

pub fn bits(&self) -> u8

Value of the field as raw bits

Source

pub fn is_no_mapping(&self) -> bool

Checks if the value of the field is NOMAPPING

Source

pub fn is_map1(&self) -> bool

Checks if the value of the field is MAP1

Source

pub fn is_map2(&self) -> bool

Checks if the value of the field is MAP2

Source

pub fn is_map3(&self) -> bool

Checks if the value of the field is MAP3

Source

pub fn is_map4(&self) -> bool

Checks if the value of the field is MAP4

Source

pub fn is_map5(&self) -> bool

Checks if the value of the field is MAP5

Source

pub fn is_map6(&self) -> bool

Checks if the value of the field is MAP6

Source

pub fn is_map7(&self) -> bool

Checks if the value of the field is MAP7

Source

pub fn is_map8(&self) -> bool

Checks if the value of the field is MAP8

Source

pub fn is_map9(&self) -> bool

Checks if the value of the field is MAP9

Source

pub fn is_map10(&self) -> bool

Checks if the value of the field is MAP10

Source

pub fn is_map11(&self) -> bool

Checks if the value of the field is MAP11

Source

pub fn is_map12(&self) -> bool

Checks if the value of the field is MAP12

Source

pub fn is_map13(&self) -> bool

Checks if the value of the field is MAP13

Source

pub fn is_map14(&self) -> bool

Checks if the value of the field is MAP14

Source

pub fn is_map15(&self) -> bool

Checks if the value of the field is MAP15

Trait Implementations§

Source§

impl Clone for C7SR

Source§

fn clone(&self) -> C7SR

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for C7SR

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for C7SR

Source§

fn eq(&self, other: &C7SR) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for C7SR

Source§

impl StructuralPartialEq for C7SR

Auto Trait Implementations§

§

impl Freeze for C7SR

§

impl RefUnwindSafe for C7SR

§

impl Send for C7SR

§

impl Sync for C7SR

§

impl Unpin for C7SR

§

impl UnwindSafe for C7SR

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.