#[repr(i32)]pub enum _bindgen_ty_1 {
AV_FRAME_CROP_UNALIGNED = 1,
}展开描述
Flags for frame cropping.
Variants§
AV_FRAME_CROP_UNALIGNED = 1
Apply the maximum possible cropping, even if it requires setting the AVFrame.data[] entries to unaligned pointers. Passing unaligned data to FFmpeg API is generally not allowed, and causes undefined behavior (such as crashes). You can pass unaligned data only to FFmpeg APIs that are explicitly documented to accept it. Use this flag only if you absolutely know what you are doing.
trait 实现§
源代码§impl Clone for _bindgen_ty_1
impl Clone for _bindgen_ty_1
源代码§fn clone(&self) -> _bindgen_ty_1
fn clone(&self) -> _bindgen_ty_1
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 _bindgen_ty_1
impl Debug for _bindgen_ty_1
源代码§impl Hash for _bindgen_ty_1
impl Hash for _bindgen_ty_1
源代码§impl PartialEq for _bindgen_ty_1
impl PartialEq for _bindgen_ty_1
impl Copy for _bindgen_ty_1
impl Eq for _bindgen_ty_1
impl StructuralPartialEq for _bindgen_ty_1
自动 trait 实现§
impl Freeze for _bindgen_ty_1
impl RefUnwindSafe for _bindgen_ty_1
impl Send for _bindgen_ty_1
impl Sync for _bindgen_ty_1
impl Unpin for _bindgen_ty_1
impl UnsafeUnpin for _bindgen_ty_1
impl UnwindSafe for _bindgen_ty_1
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
从拥有的值可变地借用。 阅读更多