pub struct EncodedFrame<'a> {
pub pin: &'a mut OutputPin,
pub sender: [bool; 26],
pub interruptor: [bool; 4],
pub state: bool,
}Fields§
§pin: &'a mut OutputPin§sender: [bool; 26]§interruptor: [bool; 4]§state: boolImplementations§
Source§impl<'a> EncodedFrame<'a>
impl<'a> EncodedFrame<'a>
pub fn from_decoded<'b>( decoded: &DecodedFrame, pin: &'b mut OutputPin, ) -> EncodedFrame<'b>
Auto Trait Implementations§
impl<'a> Freeze for EncodedFrame<'a>
impl<'a> !RefUnwindSafe for EncodedFrame<'a>
impl<'a> Send for EncodedFrame<'a>
impl<'a> Sync for EncodedFrame<'a>
impl<'a> Unpin for EncodedFrame<'a>
impl<'a> !UnwindSafe for EncodedFrame<'a>
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