#[repr(C)]pub struct AVIOInterruptCB {
pub callback: Option<unsafe extern "C" fn(arg1: *mut c_void) -> c_int>,
pub opaque: *mut c_void,
}Expand description
Callback for checking whether to abort blocking functions. AVERROR_EXIT is returned in this case by the interrupted function. During blocking operations, callback is called with opaque as parameter. If the callback returns 1, the blocking operation will be aborted.
No members can be added to this struct without a major bump, if new elements have been added after this struct in AVFormatContext or AVIOContext.
Fields§
§callback: Option<unsafe extern "C" fn(arg1: *mut c_void) -> c_int>§opaque: *mut c_voidTrait Implementations§
Source§impl Clone for AVIOInterruptCB
impl Clone for AVIOInterruptCB
Source§fn clone(&self) -> AVIOInterruptCB
fn clone(&self) -> AVIOInterruptCB
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 AVIOInterruptCB
impl Debug for AVIOInterruptCB
Source§impl Default for AVIOInterruptCB
impl Default for AVIOInterruptCB
Source§impl Hash for AVIOInterruptCB
impl Hash for AVIOInterruptCB
Source§impl Ord for AVIOInterruptCB
impl Ord for AVIOInterruptCB
Source§fn cmp(&self, other: &AVIOInterruptCB) -> Ordering
fn cmp(&self, other: &AVIOInterruptCB) -> 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 AVIOInterruptCB
impl PartialEq for AVIOInterruptCB
Source§impl PartialOrd for AVIOInterruptCB
impl PartialOrd for AVIOInterruptCB
impl Copy for AVIOInterruptCB
impl Eq for AVIOInterruptCB
impl StructuralPartialEq for AVIOInterruptCB
Auto Trait Implementations§
impl Freeze for AVIOInterruptCB
impl RefUnwindSafe for AVIOInterruptCB
impl !Send for AVIOInterruptCB
impl !Sync for AVIOInterruptCB
impl Unpin for AVIOInterruptCB
impl UnwindSafe for AVIOInterruptCB
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