pub struct FrameEvent<'a> {
pub start_t: u64,
pub exposure_start_t: Option<u64>,
pub exposure_end_t: Option<u64>,
pub t: u64,
pub pixels: &'a [u16],
}
Fields§
§start_t: u64
§exposure_start_t: Option<u64>
§exposure_end_t: Option<u64>
§t: u64
§pixels: &'a [u16]
Trait Implementations§
Source§impl<'a> Clone for FrameEvent<'a>
impl<'a> Clone for FrameEvent<'a>
Source§fn clone(&self) -> FrameEvent<'a>
fn clone(&self) -> FrameEvent<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for FrameEvent<'a>
impl<'a> Debug for FrameEvent<'a>
impl<'a> Copy for FrameEvent<'a>
Auto Trait Implementations§
impl<'a> Freeze for FrameEvent<'a>
impl<'a> RefUnwindSafe for FrameEvent<'a>
impl<'a> Send for FrameEvent<'a>
impl<'a> Sync for FrameEvent<'a>
impl<'a> Unpin for FrameEvent<'a>
impl<'a> UnwindSafe for FrameEvent<'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