pub struct PpmFrame {
pub chan_values: [PpmTime; 20],
pub chan_count: u8,
}
Expand description
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§
Auto Trait Implementations§
impl Freeze for PpmFrame
impl RefUnwindSafe for PpmFrame
impl Send for PpmFrame
impl Sync for PpmFrame
impl Unpin for PpmFrame
impl UnwindSafe for PpmFrame
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more