Enum IntPinNr

Source
#[repr(u8)]
pub enum IntPinNr {
Show 48 variants P01_0 = 0, P01_1 = 1, P01_2 = 2, P01_3 = 3, P01_4 = 4, P01_5 = 5, P01_6 = 6, P01_7 = 7, P02_0 = 8, P02_1 = 9, P02_2 = 10, P02_3 = 11, P02_4 = 12, P02_5 = 13, P02_6 = 14, P02_7 = 15, P03_0 = 16, P03_1 = 17, P03_2 = 18, P03_3 = 19, P03_4 = 20, P03_5 = 21, P03_6 = 22, P03_7 = 23, P04_0 = 24, P04_1 = 25, P04_2 = 26, P04_3 = 27, P04_4 = 28, P04_5 = 29, P04_6 = 30, P04_7 = 31, P05_0 = 32, P05_1 = 33, P05_2 = 34, P05_3 = 35, P05_4 = 36, P05_5 = 37, P05_6 = 38, P05_7 = 39, P06_0 = 40, P06_1 = 41, P06_2 = 42, P06_3 = 43, P06_4 = 44, P06_5 = 45, P06_6 = 46, P06_7 = 47,
}

Variants§

§

P01_0 = 0

§

P01_1 = 1

§

P01_2 = 2

§

P01_3 = 3

§

P01_4 = 4

§

P01_5 = 5

§

P01_6 = 6

§

P01_7 = 7

§

P02_0 = 8

§

P02_1 = 9

§

P02_2 = 10

§

P02_3 = 11

§

P02_4 = 12

§

P02_5 = 13

§

P02_6 = 14

§

P02_7 = 15

§

P03_0 = 16

§

P03_1 = 17

§

P03_2 = 18

§

P03_3 = 19

§

P03_4 = 20

§

P03_5 = 21

§

P03_6 = 22

§

P03_7 = 23

§

P04_0 = 24

§

P04_1 = 25

§

P04_2 = 26

§

P04_3 = 27

§

P04_4 = 28

§

P04_5 = 29

§

P04_6 = 30

§

P04_7 = 31

§

P05_0 = 32

§

P05_1 = 33

§

P05_2 = 34

§

P05_3 = 35

§

P05_4 = 36

§

P05_5 = 37

§

P05_6 = 38

§

P05_7 = 39

§

P06_0 = 40

§

P06_1 = 41

§

P06_2 = 42

§

P06_3 = 43

§

P06_4 = 44

§

P06_5 = 45

§

P06_6 = 46

§

P06_7 = 47

Trait Implementations§

Source§

impl Clone for IntPinNr

Source§

fn clone(&self) -> IntPinNr

Returns a copy 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 Copy for IntPinNr

Auto Trait Implementations§

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, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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, 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.