[][src]Struct apigpio::WaveId

pub struct WaveId(pub Word);

Refers to a Wave stored in pigpiod.

See the pigpio wave documentaton. In pigpiod Wave IDs are global across all pigpio clients, and waves not cleared (nor transmission stopped!) when a client disconnects.

Because of safety concerns (see particularly the pigpio documentation about wave *SYNC*), waves are not automatically deleted when a WaveID is dropped. The best approach is usually to use wave_clear on program startup.

The inner Word is available in case you need to do something exciting (maybe something cross-process).

Trait Implementations

impl Clone for WaveId[src]

impl Copy for WaveId[src]

impl Debug for WaveId[src]

impl Display for WaveId[src]

impl Eq for WaveId[src]

impl Hash for WaveId[src]

impl Ord for WaveId[src]

impl PartialEq<WaveId> for WaveId[src]

impl PartialOrd<WaveId> for WaveId[src]

impl StructuralEq for WaveId[src]

impl StructuralPartialEq for WaveId[src]

Auto Trait Implementations

impl RefUnwindSafe for WaveId

impl Send for WaveId

impl Sync for WaveId

impl Unpin for WaveId

impl UnwindSafe for WaveId

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> Slottable for T where
    T: Copy
[src]

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.