#[repr(i32)]pub enum AVThreadMessageFlags {
AV_THREAD_MESSAGE_NONBLOCK = 1,
}Variants§
AV_THREAD_MESSAGE_NONBLOCK = 1
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 实现§
源代码§impl Clone for AVThreadMessageFlags
impl Clone for AVThreadMessageFlags
源代码§fn clone(&self) -> AVThreadMessageFlags
fn clone(&self) -> AVThreadMessageFlags
Returns a duplicate of the value. 阅读更多
1.0.0 · 源代码§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
从
source 执行拷贝赋值。 阅读更多源代码§impl Debug for AVThreadMessageFlags
impl Debug for AVThreadMessageFlags
源代码§impl Hash for AVThreadMessageFlags
impl Hash for AVThreadMessageFlags
源代码§impl PartialEq for AVThreadMessageFlags
impl PartialEq for AVThreadMessageFlags
impl Copy for AVThreadMessageFlags
impl Eq for AVThreadMessageFlags
impl StructuralPartialEq for AVThreadMessageFlags
自动 trait 实现§
impl Freeze for AVThreadMessageFlags
impl RefUnwindSafe for AVThreadMessageFlags
impl Send for AVThreadMessageFlags
impl Sync for AVThreadMessageFlags
impl Unpin for AVThreadMessageFlags
impl UnsafeUnpin for AVThreadMessageFlags
impl UnwindSafe for AVThreadMessageFlags
blanket 实现§
源代码§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
源代码§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
从拥有的值可变地借用。 阅读更多