#[repr(C)]pub struct AVChannelCustom {
pub id: AVChannel,
pub name: [c_char; 16],
pub opaque: *mut c_void,
}Expand description
An AVChannelCustom defines a single channel within a custom order layout
Unlike most structures in FFmpeg, sizeof(AVChannelCustom) is a part of the public ABI.
No new fields may be added to it without a major version bump.
Fields§
§id: AVChannel§name: [c_char; 16]§opaque: *mut c_voidTrait Implementations§
Source§impl Clone for AVChannelCustom
impl Clone for AVChannelCustom
Source§fn clone(&self) -> AVChannelCustom
fn clone(&self) -> AVChannelCustom
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 AVChannelCustom
impl Debug for AVChannelCustom
Source§impl Default for AVChannelCustom
impl Default for AVChannelCustom
Source§impl Hash for AVChannelCustom
impl Hash for AVChannelCustom
Source§impl Ord for AVChannelCustom
impl Ord for AVChannelCustom
Source§fn cmp(&self, other: &AVChannelCustom) -> Ordering
fn cmp(&self, other: &AVChannelCustom) -> 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 AVChannelCustom
impl PartialEq for AVChannelCustom
Source§impl PartialOrd for AVChannelCustom
impl PartialOrd for AVChannelCustom
impl Copy for AVChannelCustom
impl Eq for AVChannelCustom
impl StructuralPartialEq for AVChannelCustom
Auto Trait Implementations§
impl Freeze for AVChannelCustom
impl RefUnwindSafe for AVChannelCustom
impl !Send for AVChannelCustom
impl !Sync for AVChannelCustom
impl Unpin for AVChannelCustom
impl UnwindSafe for AVChannelCustom
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