#[repr(u32)]
pub enum AVThreadMessageFlags {
AV_THREAD_MESSAGE_NONBLOCK,
}Variants§
AV_THREAD_MESSAGE_NONBLOCK
Perform non-blocking operation. If this flag is set, send and recv operations are non-blocking and return AVERROR(EAGAIN) immediately if they can not proceed.
Trait Implementations§
source§impl Clone for AVThreadMessageFlags
impl Clone for AVThreadMessageFlags
source§fn clone(&self) -> AVThreadMessageFlags
fn clone(&self) -> AVThreadMessageFlags
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 AVThreadMessageFlags
impl Debug for AVThreadMessageFlags
source§impl Hash for AVThreadMessageFlags
impl Hash for AVThreadMessageFlags
source§impl PartialEq<AVThreadMessageFlags> for AVThreadMessageFlags
impl PartialEq<AVThreadMessageFlags> for AVThreadMessageFlags
source§fn eq(&self, other: &AVThreadMessageFlags) -> bool
fn eq(&self, other: &AVThreadMessageFlags) -> bool
This method tests for
self and other values to be equal, and is used
by ==.