pub struct RenderedFrame {
pub width_px: u32,
pub height_px: u32,
pub rgb: Vec<u8>,
}Fields§
§width_px: u32§height_px: u32§rgb: Vec<u8>Trait Implementations§
Source§impl Clone for RenderedFrame
impl Clone for RenderedFrame
Source§fn clone(&self) -> RenderedFrame
fn clone(&self) -> RenderedFrame
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 Debug for RenderedFrame
impl Debug for RenderedFrame
Source§impl PartialEq for RenderedFrame
impl PartialEq for RenderedFrame
impl StructuralPartialEq for RenderedFrame
Auto Trait Implementations§
impl Freeze for RenderedFrame
impl RefUnwindSafe for RenderedFrame
impl Send for RenderedFrame
impl Sync for RenderedFrame
impl Unpin for RenderedFrame
impl UnsafeUnpin for RenderedFrame
impl UnwindSafe for RenderedFrame
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