#[repr(C)]pub struct v4l2_subdev_format {
pub which: __u32,
pub pad: __u32,
pub format: v4l2_mbus_framefmt,
pub stream: __u32,
pub reserved: [__u32; 7],
}
Expand description
struct v4l2_subdev_format - Pad-level media bus format @which: format type (from enum v4l2_subdev_format_whence) @pad: pad number, as reported by the media API @format: media bus format (format code and frame size) @stream: stream number, defined in subdev routing @reserved: drivers and applications must zero this array
Fields§
§which: __u32
§pad: __u32
§format: v4l2_mbus_framefmt
§stream: __u32
§reserved: [__u32; 7]
Trait Implementations§
Source§impl Clone for v4l2_subdev_format
impl Clone for v4l2_subdev_format
Source§fn clone(&self) -> v4l2_subdev_format
fn clone(&self) -> v4l2_subdev_format
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 moreimpl Copy for v4l2_subdev_format
Auto Trait Implementations§
impl Freeze for v4l2_subdev_format
impl RefUnwindSafe for v4l2_subdev_format
impl Send for v4l2_subdev_format
impl Sync for v4l2_subdev_format
impl Unpin for v4l2_subdev_format
impl UnwindSafe for v4l2_subdev_format
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