pub struct Sent<DELAY, PIN> {
pub delay: DELAY,
pub pin: PIN,
pub t_frame: u32,
pub t_tick: u32,
pub t_sync: u32,
pub t_offset: u32,
pub nb_nibbles: u32,
}
Fields§
§delay: DELAY
§pin: PIN
§t_frame: u32
§t_tick: u32
§t_sync: u32
§t_offset: u32
§nb_nibbles: u32
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<DELAY, PIN> Freeze for Sent<DELAY, PIN>
impl<DELAY, PIN> RefUnwindSafe for Sent<DELAY, PIN>where
DELAY: RefUnwindSafe,
PIN: RefUnwindSafe,
impl<DELAY, PIN> Send for Sent<DELAY, PIN>
impl<DELAY, PIN> Sync for Sent<DELAY, PIN>
impl<DELAY, PIN> Unpin for Sent<DELAY, PIN>
impl<DELAY, PIN> UnwindSafe for Sent<DELAY, PIN>where
DELAY: UnwindSafe,
PIN: UnwindSafe,
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