Struct Timing

Source
pub struct Timing { /* private fields */ }
Available on crate feature unstable only.
Expand description

I2C timings

Implementations§

Source§

impl Timing

Source

pub fn with_scl_low_period(self, scl_low_period: u32) -> Self

Assign the given value to the scl_low_period field.

Source

pub fn scl_low_period(&self) -> u32

SCL low period

Source

pub fn with_scl_high_period(self, scl_high_period: u32) -> Self

Assign the given value to the scl_high_period field.

Source

pub fn scl_high_period(&self) -> u32

SCL high period

Source

pub fn with_sda_duty(self, sda_duty: u32) -> Self

Assign the given value to the sda_duty field.

Source

pub fn sda_duty(&self) -> u32

Period between the SDA switch and the falling edge of SCL

Source

pub fn with_scl_start_period(self, scl_start_period: u32) -> Self

Assign the given value to the scl_start_period field.

Source

pub fn scl_start_period(&self) -> u32

Waiting time after the START condition in micro seconds

Source

pub fn with_scl_stop_period(self, scl_stop_period: u32) -> Self

Assign the given value to the scl_stop_period field.

Source

pub fn scl_stop_period(&self) -> u32

Waiting time before the END condition in micro seconds

Source§

impl Timing

Source

pub fn standard_mode() -> Self

I2C timings for standard mode (100 kHz).

Source

pub fn fast_mode() -> Self

I2C timings for fast mode (400 kHz).

Trait Implementations§

Source§

impl Clone for Timing

Source§

fn clone(&self) -> Timing

Returns a duplicate of the value. Read more
1.0.0§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for Timing

Source§

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

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

impl Default for Timing

Source§

fn default() -> Timing

Returns the “default value” for a type. Read more
Source§

impl Hash for Timing

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given [Hasher]. Read more
1.3.0§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given [Hasher]. Read more
Source§

impl PartialEq for Timing

Source§

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

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

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 Timing

Source§

impl Eq for Timing

Source§

impl StructuralPartialEq for Timing

Auto Trait Implementations§

§

impl Freeze for Timing

§

impl RefUnwindSafe for Timing

§

impl Send for Timing

§

impl Sync for Timing

§

impl Unpin for Timing

§

impl UnwindSafe for Timing

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

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

§

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
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

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
§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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

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

Performs the conversion.