[][src]Struct ppm_decode::PpmFrame

pub struct PpmFrame {
    pub chan_values: [PpmTime; 20],
    pub chan_count: u8,
}

A single group of PPM channel values

Fields

chan_values: [PpmTime; 20]

Decoded PPM channel values

chan_count: u8

Number of channels decoded (≤ MAX_PPM_CHANNELS)

Trait Implementations

impl Clone for PpmFrame[src]

impl Copy for PpmFrame[src]

impl Debug for PpmFrame[src]

Auto Trait Implementations

impl Send for PpmFrame

impl Sync for PpmFrame

impl Unpin for PpmFrame

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