pub struct FrameSideData {
pub data_type: FrameSideDataType,
pub data: Vec<u8>,
}Expand description
Side data associated with a frame, matching FFmpeg’s AVFrameSideData.
Fields§
§data_type: FrameSideDataType§data: Vec<u8>Trait Implementations§
Source§impl Clone for FrameSideData
impl Clone for FrameSideData
Source§fn clone(&self) -> FrameSideData
fn clone(&self) -> FrameSideData
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 FrameSideData
impl RefUnwindSafe for FrameSideData
impl Send for FrameSideData
impl Sync for FrameSideData
impl Unpin for FrameSideData
impl UnsafeUnpin for FrameSideData
impl UnwindSafe for FrameSideData
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