Struct AVVideoHint
#[repr(C)]pub struct AVVideoHint {
pub nb_rects: usize,
pub rect_offset: usize,
pub rect_size: usize,
pub type_: u32,
}
Fields§
§nb_rects: usize
Number of AVVideoRect present.
May be 0, in which case no per-rectangle information is present. In this case the values of rect_offset / rect_size are unspecified and should not be accessed.
rect_offset: usize
Offset in bytes from the beginning of this structure at which the array of AVVideoRect starts.
rect_size: usize
Size in bytes of AVVideoRect.
type_: u32
Trait Implementations§
§impl Clone for AVVideoHint
impl Clone for AVVideoHint
§fn clone(&self) -> AVVideoHint
fn clone(&self) -> AVVideoHint
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 more§impl Debug for AVVideoHint
impl Debug for AVVideoHint
impl Copy for AVVideoHint
Auto Trait Implementations§
impl Freeze for AVVideoHint
impl RefUnwindSafe for AVVideoHint
impl Send for AVVideoHint
impl Sync for AVVideoHint
impl Unpin for AVVideoHint
impl UnwindSafe for AVVideoHint
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