pub struct MpegRgbaFrame {
pub pts_ms: i64,
pub width: u32,
pub height: u32,
pub rgba: Vec<u8>,
}Fields§
§pts_ms: i64§width: u32§height: u32§rgba: Vec<u8>Trait Implementations§
Source§impl Clone for MpegRgbaFrame
impl Clone for MpegRgbaFrame
Source§fn clone(&self) -> MpegRgbaFrame
fn clone(&self) -> MpegRgbaFrame
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 moreAuto Trait Implementations§
impl Freeze for MpegRgbaFrame
impl RefUnwindSafe for MpegRgbaFrame
impl Send for MpegRgbaFrame
impl Sync for MpegRgbaFrame
impl Unpin for MpegRgbaFrame
impl UnwindSafe for MpegRgbaFrame
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