[][src]Struct bluetooth_mesh::foundation::publication::PublishPeriod

pub struct PublishPeriod {
    pub resolution: StepResolution,
    pub steps: Steps,
}

Fields

resolution: StepResolutionsteps: Steps

Methods

impl PublishPeriod[src]

pub fn new(resolution: StepResolution, steps: Steps) -> Self[src]

pub fn to_milliseconds(&self) -> u32[src]

pub fn to_duration(&self) -> Duration[src]

pub fn packed(&self) -> u8[src]

pub fn unpack(b: u8) -> Self[src]

Trait Implementations

impl Clone for PublishPeriod[src]

impl Copy for PublishPeriod[src]

impl Debug for PublishPeriod[src]

impl Eq for PublishPeriod[src]

impl From<PublishPeriod> for u8[src]

impl From<PublishPeriod> for Duration[src]

impl Hash for PublishPeriod[src]

impl Ord for PublishPeriod[src]

impl PartialEq<PublishPeriod> for PublishPeriod[src]

impl PartialOrd<PublishPeriod> for PublishPeriod[src]

impl StructuralEq for PublishPeriod[src]

impl StructuralPartialEq for PublishPeriod[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,