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