#[repr(C)]pub struct AVSideDataDescriptor {
pub name: *const c_char,
pub props: c_uint,
}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 c_charHuman-readable side data description.
props: c_uintSide 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
Source§impl Default for AVSideDataDescriptor
impl Default for AVSideDataDescriptor
Source§impl Hash for AVSideDataDescriptor
impl Hash for AVSideDataDescriptor
Source§impl Ord for AVSideDataDescriptor
impl Ord for AVSideDataDescriptor
Source§fn cmp(&self, other: &AVSideDataDescriptor) -> Ordering
fn cmp(&self, other: &AVSideDataDescriptor) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AVSideDataDescriptor
impl PartialEq for AVSideDataDescriptor
Source§impl PartialOrd for AVSideDataDescriptor
impl PartialOrd for AVSideDataDescriptor
impl Copy for AVSideDataDescriptor
impl Eq for AVSideDataDescriptor
impl StructuralPartialEq 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