[−][src]Struct esp32_hal::units::NanoSeconds
Trait Implementations
impl Add<NanoSeconds> for NanoSeconds[src]
type Output = Self
The resulting type after applying the + operator.
fn add(self, rhs: Self) -> Self::Output[src]
impl Clone for NanoSeconds[src]
fn clone(&self) -> NanoSeconds[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for NanoSeconds[src]
impl Debug for NanoSeconds[src]
impl Default for NanoSeconds[src]
fn default() -> NanoSeconds[src]
impl Display for NanoSeconds[src]
impl Div<NanoSeconds> for NanoSeconds[src]
type Output = ValueType
The resulting type after applying the / operator.
fn div(self, rhs: Self) -> Self::Output[src]
impl Div<u32> for NanoSeconds[src]
type Output = Self
The resulting type after applying the / operator.
fn div(self, rhs: ValueType) -> Self::Output[src]
impl Eq for NanoSeconds[src]
impl From<MicroSeconds> for NanoSeconds[src]
fn from(x: MicroSeconds) -> Self[src]
impl From<MilliSeconds> for NanoSeconds[src]
fn from(x: MilliSeconds) -> Self[src]
impl From<NanoSeconds> for ValueType[src]
fn from(x: NanoSeconds) -> Self[src]
impl From<NanoSeconds> for NanoSecondsU64[src]
fn from(x: NanoSeconds) -> Self[src]
impl From<Seconds> for NanoSeconds[src]
impl From<u32> for NanoSeconds[src]
fn from(x: ValueType) -> NanoSeconds[src]
impl Hash for NanoSeconds[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl Mul<Hertz> for NanoSeconds[src]
type Output = Ticks
The resulting type after applying the * operator.
fn mul(self, rhs: Hertz) -> Self::Output[src]
impl Mul<HertzU64> for NanoSeconds[src]
type Output = TicksU64
The resulting type after applying the * operator.
fn mul(self, rhs: HertzU64) -> Self::Output[src]
impl Mul<KiloHertz> for NanoSeconds[src]
type Output = Ticks
The resulting type after applying the * operator.
fn mul(self, rhs: KiloHertz) -> Self::Output[src]
impl Mul<KiloHertzU64> for NanoSeconds[src]
type Output = TicksU64
The resulting type after applying the * operator.
fn mul(self, rhs: KiloHertzU64) -> Self::Output[src]
impl Mul<MegaHertz> for NanoSeconds[src]
type Output = Ticks
The resulting type after applying the * operator.
fn mul(self, rhs: MegaHertz) -> Self::Output[src]
impl Mul<MegaHertzU64> for NanoSeconds[src]
type Output = TicksU64
The resulting type after applying the * operator.
fn mul(self, rhs: MegaHertzU64) -> Self::Output[src]
impl Mul<NanoSeconds> for ValueType[src]
type Output = NanoSeconds
The resulting type after applying the * operator.
fn mul(self, rhs: NanoSeconds) -> Self::Output[src]
impl Mul<NanoSeconds> for Hertz[src]
type Output = Ticks
The resulting type after applying the * operator.
fn mul(self, rhs: NanoSeconds) -> Self::Output[src]
impl Mul<NanoSeconds> for HertzU64[src]
type Output = TicksU64
The resulting type after applying the * operator.
fn mul(self, rhs: NanoSeconds) -> Self::Output[src]
impl Mul<NanoSeconds> for KiloHertz[src]
type Output = Ticks
The resulting type after applying the * operator.
fn mul(self, rhs: NanoSeconds) -> Self::Output[src]
impl Mul<NanoSeconds> for KiloHertzU64[src]
type Output = TicksU64
The resulting type after applying the * operator.
fn mul(self, rhs: NanoSeconds) -> Self::Output[src]
impl Mul<NanoSeconds> for MegaHertz[src]
type Output = Ticks
The resulting type after applying the * operator.
fn mul(self, rhs: NanoSeconds) -> Self::Output[src]
impl Mul<NanoSeconds> for MegaHertzU64[src]
type Output = TicksU64
The resulting type after applying the * operator.
fn mul(self, rhs: NanoSeconds) -> Self::Output[src]
impl Mul<u32> for NanoSeconds[src]
type Output = Self
The resulting type after applying the * operator.
fn mul(self, rhs: ValueType) -> Self::Output[src]
impl Ord for NanoSeconds[src]
fn cmp(&self, other: &NanoSeconds) -> Ordering[src]
#[must_use]fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<NanoSeconds> for NanoSeconds[src]
fn eq(&self, other: &NanoSeconds) -> bool[src]
fn ne(&self, other: &NanoSeconds) -> bool[src]
impl PartialOrd<NanoSeconds> for NanoSeconds[src]
fn partial_cmp(&self, other: &NanoSeconds) -> Option<Ordering>[src]
fn lt(&self, other: &NanoSeconds) -> bool[src]
fn le(&self, other: &NanoSeconds) -> bool[src]
fn gt(&self, other: &NanoSeconds) -> bool[src]
fn ge(&self, other: &NanoSeconds) -> bool[src]
impl Quantity for NanoSeconds[src]
impl StructuralEq for NanoSeconds[src]
impl StructuralPartialEq for NanoSeconds[src]
impl Sub<NanoSeconds> for NanoSeconds[src]
type Output = Self
The resulting type after applying the - operator.
fn sub(self, rhs: Self) -> Self::Output[src]
impl Time for NanoSeconds[src]
impl TryFrom<NanoSecondsU64> for NanoSeconds[src]
type Error = TryFromIntError
The type returned in the event of a conversion error.
fn try_from(x: NanoSecondsU64) -> Result<NanoSeconds, Self::Error>[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
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>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,