pub struct OldOutputPin<T> { /* private fields */ }
Expand description

Wrapper to allow fallible v2::OutputPin traits to be converted to v1::OutputPin traits

Implementations§

source§

impl<T, E> OldOutputPin<T>where T: OutputPin<Error = E>, E: Debug,

source

pub fn new(pin: T) -> Self

Create a new OldOutputPin wrapper around a v2::OutputPin

Trait Implementations§

source§

impl<T, E> From<T> for OldOutputPin<T>where T: OutputPin<Error = E>, E: Debug,

source§

fn from(pin: T) -> Self

Converts to this type from the input type.
source§

impl<T, E> OutputPin for OldOutputPin<T>where T: OutputPin<Error = E>, E: Debug,

Implementation of v1::OutputPin trait for fallible v2::OutputPin output pins where errors will panic.

source§

fn set_low(&mut self)

👎Deprecated since 0.2.2: Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Drives the pin low Read more
source§

fn set_high(&mut self)

👎Deprecated since 0.2.2: Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Drives the pin high Read more
source§

impl<T, E> StatefulOutputPin for OldOutputPin<T>where T: StatefulOutputPin<Error = E>, E: Debug,

Implementation of v1::StatefulOutputPin trait for v2::StatefulOutputPin fallible pins where errors will panic.

source§

fn is_set_low(&self) -> bool

👎Deprecated since 0.2.2: Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Is the pin in drive low mode? Read more
source§

fn is_set_high(&self) -> bool

👎Deprecated since 0.2.2: Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Is the pin in drive high mode? Read more

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for OldOutputPin<T>where T: RefUnwindSafe,

§

impl<T> Send for OldOutputPin<T>where T: Send,

§

impl<T> Sync for OldOutputPin<T>where T: Sync,

§

impl<T> Unpin for OldOutputPin<T>where T: Unpin,

§

impl<T> UnwindSafe for OldOutputPin<T>where T: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. 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 Twhere 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> OutputPin for Twhere T: OutputPin,

§

type Error = ()

Error type
source§

fn set_low(&mut self) -> Result<(), <T as OutputPin>::Error>

Drives the pin low Read more
source§

fn set_high(&mut self) -> Result<(), <T as OutputPin>::Error>

Drives the pin high Read more
source§

fn set_state(&mut self, state: PinState) -> Result<(), Self::Error>

Drives the pin high or low depending on the provided value Read more
source§

impl<T> StatefulOutputPin for Twhere T: StatefulOutputPin + OutputPin,

source§

fn is_set_low(&self) -> Result<bool, <T as OutputPin>::Error>

Is the pin in drive low mode? Read more
source§

fn is_set_high(&self) -> Result<bool, <T as OutputPin>::Error>

Is the pin in drive high mode? Read more
source§

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

§

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 Twhere U: TryFrom<T>,

§

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.