Struct esp_idf_hal::delay::TickType

source ·
#[repr(transparent)]
pub struct TickType(pub TickType_t);
Expand description

Transparent wrapper around TickType_t with conversion methods.

Tuple Fields§

§0: TickType_t

Implementations§

source§

impl TickType

source

pub const fn new(ticks: TickType_t) -> Self

Construct a TickType from a number of ticks.

source

pub const fn new_millis(ms: u64) -> Self

Construct a TickType from a number of milliseconds. This function will round the number of ticks up, if required.

source

pub const fn ticks(&self) -> TickType_t

Get the number of ticks.

source

pub const fn as_millis(&self) -> u64

Convert the number of ticks to a number of milliseconds. This function will round the number of milliseconds up, if required.

source

pub const fn as_millis_u32(&self) -> u32

Convert the number of ticks to a number of milliseconds and saturate to u32. This function will round the number of milliseconds up, if required.

Trait Implementations§

source§

impl From<Duration> for TickType

source§

fn from(duration: Duration) -> Self

Converts to this type from the input type.
source§

impl From<Option<Duration>> for TickType

source§

fn from(duration: Option<Duration>) -> Self

Converts to this type from the input type.
source§

impl From<TickType> for Duration

source§

fn from(ticks: TickType) -> Self

Converts to this type from the input type.
source§

impl From<TickType> for Option<Duration>

source§

fn from(ticks: TickType) -> Self

Converts to this type from the input type.
source§

impl From<TickType> for TickType_t

source§

fn from(value: TickType) -> Self

Converts to this type from the input type.
source§

impl From<u32> for TickType

source§

fn from(value: TickType_t) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl RefUnwindSafe for TickType

§

impl Send for TickType

§

impl Sync for TickType

§

impl Unpin for TickType

§

impl UnwindSafe for TickType

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

§

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.