#[repr(C)]pub struct v4l2_subdev_frame_size_enum {
pub index: __u32,
pub pad: __u32,
pub code: __u32,
pub min_width: __u32,
pub max_width: __u32,
pub min_height: __u32,
pub max_height: __u32,
pub which: __u32,
pub stream: __u32,
pub reserved: [__u32; 7],
}
Expand description
struct v4l2_subdev_frame_size_enum - Media bus format enumeration @index: format index during enumeration @pad: pad number, as reported by the media API @code: format code (MEDIA_BUS_FMT_ definitions) @min_width: minimum frame width, in pixels @max_width: maximum frame width, in pixels @min_height: minimum frame height, in pixels @max_height: maximum frame height, in pixels @which: format type (from enum v4l2_subdev_format_whence) @stream: stream number, defined in subdev routing @reserved: drivers and applications must zero this array
Fields§
§index: __u32
§pad: __u32
§code: __u32
§min_width: __u32
§max_width: __u32
§min_height: __u32
§max_height: __u32
§which: __u32
§stream: __u32
§reserved: [__u32; 7]
Trait Implementations§
Source§impl Clone for v4l2_subdev_frame_size_enum
impl Clone for v4l2_subdev_frame_size_enum
Source§fn clone(&self) -> v4l2_subdev_frame_size_enum
fn clone(&self) -> v4l2_subdev_frame_size_enum
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 v4l2_subdev_frame_size_enum
impl Debug for v4l2_subdev_frame_size_enum
impl Copy for v4l2_subdev_frame_size_enum
Auto Trait Implementations§
impl Freeze for v4l2_subdev_frame_size_enum
impl RefUnwindSafe for v4l2_subdev_frame_size_enum
impl Send for v4l2_subdev_frame_size_enum
impl Sync for v4l2_subdev_frame_size_enum
impl Unpin for v4l2_subdev_frame_size_enum
impl UnwindSafe for v4l2_subdev_frame_size_enum
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