#[repr(C)]pub struct AVChannelCustom {
pub id: i32,
pub name: [i8; 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: i32
§name: [i8; 16]
§opaque: *mut c_void
Trait 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
impl Copy 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