Struct atmega_hal::port::PB3

source ·
pub struct PB3 { /* private fields */ }

Trait Implementations§

source§

impl PinOps for PB3

§

type Dynamic = Dynamic

source§

fn into_dynamic(self) -> Self::Dynamic

source§

unsafe fn out_set(&mut self)

source§

unsafe fn out_clear(&mut self)

source§

unsafe fn out_toggle(&mut self)

source§

unsafe fn out_get(&self) -> bool

source§

unsafe fn in_get(&self) -> bool

source§

unsafe fn make_output(&mut self)

source§

unsafe fn make_input(&mut self, pull_up: bool)

source§

impl PwmPinOps<Timer2Pwm> for PB3

§

type Duty = u8

source§

fn enable(&mut self)

source§

fn disable(&mut self)

source§

fn get_duty(&self) -> Self::Duty

source§

fn get_max_duty(&self) -> Self::Duty

source§

fn set_duty(&mut self, duty: Self::Duty)

source§

impl SpiOps<Atmega, PB5, PB3, PB4, PB2> for SPI

source§

fn raw_setup(&mut self, settings: &Settings)

Sets up the control/status registers with the right settings for this secondary device
source§

fn raw_release(&mut self)

Disable the peripheral
source§

fn raw_check_iflag(&self) -> bool

Check the interrupt flag to see if the write has completed Read more
source§

fn raw_read(&self) -> u8

Read a byte from the data register
source§

fn raw_write(&mut self, byte: u8)

Write a byte to the data register, which begins transmission automatically.
source§

fn raw_transaction(&mut self, byte: u8) -> u8

Perform a transaction of a single byte

Auto Trait Implementations§

§

impl RefUnwindSafe for PB3

§

impl Send for PB3

§

impl Sync for PB3

§

impl Unpin for PB3

§

impl UnwindSafe for PB3

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

§

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

§

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.