#[repr(i32)]pub enum AVClassStateFlags {
AV_CLASS_STATE_INITIALIZED = 1,
}Variants§
AV_CLASS_STATE_INITIALIZED = 1
Object initialization has finished and it is now in the ‘runtime’ stage. This affects e.g. what options can be set on the object (only AV_OPT_FLAG_RUNTIME_PARAM options can be set on initialized objects).
trait 实现§
源代码§impl Clone for AVClassStateFlags
impl Clone for AVClassStateFlags
源代码§fn clone(&self) -> AVClassStateFlags
fn clone(&self) -> AVClassStateFlags
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 AVClassStateFlags
impl Debug for AVClassStateFlags
源代码§impl Hash for AVClassStateFlags
impl Hash for AVClassStateFlags
源代码§impl PartialEq for AVClassStateFlags
impl PartialEq for AVClassStateFlags
impl Copy for AVClassStateFlags
impl Eq for AVClassStateFlags
impl StructuralPartialEq for AVClassStateFlags
自动 trait 实现§
impl Freeze for AVClassStateFlags
impl RefUnwindSafe for AVClassStateFlags
impl Send for AVClassStateFlags
impl Sync for AVClassStateFlags
impl Unpin for AVClassStateFlags
impl UnsafeUnpin for AVClassStateFlags
impl UnwindSafe for AVClassStateFlags
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
从拥有的值可变地借用。 阅读更多