#[repr(C)]pub struct AVFilterCommand {
pub time: f64,
pub command: *mut c_char,
pub arg: *mut c_char,
pub flags: c_int,
pub next: *mut AVFilterCommand,
}
Fields§
§time: f64
< time expressed in seconds
command: *mut c_char
< command
arg: *mut c_char
< optional argument for the command
flags: c_int
§next: *mut AVFilterCommand
Trait Implementations§
Source§impl Clone for AVFilterCommand
impl Clone for AVFilterCommand
Source§fn clone(&self) -> AVFilterCommand
fn clone(&self) -> AVFilterCommand
Returns a copy 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 AVFilterCommand
impl Debug for AVFilterCommand
impl Copy for AVFilterCommand
Auto Trait Implementations§
impl Freeze for AVFilterCommand
impl RefUnwindSafe for AVFilterCommand
impl !Send for AVFilterCommand
impl !Sync for AVFilterCommand
impl Unpin for AVFilterCommand
impl UnwindSafe for AVFilterCommand
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