Pin

Enum Pin 

Source
pub enum Pin {
Show 16 variants P0 = 1, P1 = 2, P2 = 4, P3 = 8, P4 = 16, P5 = 32, P6 = 64, P7 = 128, P10 = 256, P11 = 512, P12 = 1_024, P13 = 2_048, P14 = 4_096, P15 = 8_192, P16 = 16_384, P17 = 32_768,
}
Expand description

Pin of Pcf857x

Variants§

§

P0 = 1

Pin 0

§

P1 = 2

Pin 1

§

P2 = 4

Pin 2

§

P3 = 8

Pin 3

§

P4 = 16

Pin 4

§

P5 = 32

Pin 5

§

P6 = 64

Pin 6

§

P7 = 128

Pin 7

§

P10 = 256

Pin 10 (only PCF8575)

§

P11 = 512

Pin 11 (only PCF8575)

§

P12 = 1_024

Pin 12 (only PCF8575)

§

P13 = 2_048

Pin 13 (only PCF8575)

§

P14 = 4_096

Pin 14 (only PCF8575)

§

P15 = 8_192

Pin 15 (only PCF8575)

§

P16 = 16_384

Pin 16 (only PCF8575)

§

P17 = 32_768

Pin 17 (only PCF8575)

Trait Implementations§

Source§

impl Clone for Pin

Source§

fn clone(&self) -> Pin

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 Pin

Source§

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

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

impl Copy for Pin

Auto Trait Implementations§

§

impl Freeze for Pin

§

impl RefUnwindSafe for Pin

§

impl Send for Pin

§

impl Sync for Pin

§

impl Unpin for Pin

§

impl UnwindSafe for Pin

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, 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.