#[repr(C)]pub struct AVSideDataDescriptor {
pub name: *const i8,
pub props: u32,
}
Expand description
This struct describes the properties of a side data type. Its instance corresponding to a given type can be obtained from av_frame_side_data_desc().
Fields§
§name: *const i8
Human-readable side data description.
props: u32
Side data property flags, a combination of AVSideDataProps values.
Trait Implementations§
Source§impl Clone for AVSideDataDescriptor
impl Clone for AVSideDataDescriptor
Source§fn clone(&self) -> AVSideDataDescriptor
fn clone(&self) -> AVSideDataDescriptor
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 AVSideDataDescriptor
impl Debug for AVSideDataDescriptor
impl Copy for AVSideDataDescriptor
Auto Trait Implementations§
impl Freeze for AVSideDataDescriptor
impl RefUnwindSafe for AVSideDataDescriptor
impl !Send for AVSideDataDescriptor
impl !Sync for AVSideDataDescriptor
impl Unpin for AVSideDataDescriptor
impl UnwindSafe for AVSideDataDescriptor
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