pub struct ResultRegular {
pub data: i32,
pub channel: u8,
pub pending: bool,
}Expand description
Regular conversion result.
Fields§
§data: i32Sign-extended 24-bit sample.
channel: u8Transceiver the sample came from.
pending: boolSet if the conversion was delayed by an injected conversion.
Implementations§
Auto Trait Implementations§
impl Freeze for ResultRegular
impl RefUnwindSafe for ResultRegular
impl Send for ResultRegular
impl Sync for ResultRegular
impl Unpin for ResultRegular
impl UnsafeUnpin for ResultRegular
impl UnwindSafe for ResultRegular
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