#[repr(C)]pub struct video_output_info {
pub name: *const c_char,
pub format: video_format,
pub fps_num: u32,
pub fps_den: u32,
pub width: u32,
pub height: u32,
pub cache_size: usize,
pub colorspace: video_colorspace,
pub range: video_range_type,
}
Fields§
§name: *const c_char
§format: video_format
§fps_num: u32
§fps_den: u32
§width: u32
§height: u32
§cache_size: usize
§colorspace: video_colorspace
§range: video_range_type
Trait Implementations§
Source§impl Clone for video_output_info
impl Clone for video_output_info
Source§fn clone(&self) -> video_output_info
fn clone(&self) -> video_output_info
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 video_output_info
impl Debug for video_output_info
Source§impl Ord for video_output_info
impl Ord for video_output_info
Source§fn cmp(&self, other: &video_output_info) -> Ordering
fn cmp(&self, other: &video_output_info) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for video_output_info
impl PartialEq for video_output_info
Source§impl PartialOrd for video_output_info
impl PartialOrd for video_output_info
impl Copy for video_output_info
impl Eq for video_output_info
impl StructuralPartialEq for video_output_info
Auto Trait Implementations§
impl Freeze for video_output_info
impl RefUnwindSafe for video_output_info
impl !Send for video_output_info
impl !Sync for video_output_info
impl Unpin for video_output_info
impl UnwindSafe for video_output_info
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