#[repr(C)]pub struct v4l2_subdev_routing {
pub which: __u32,
pub len_routes: __u32,
pub routes: __u64,
pub num_routes: __u32,
pub reserved: [__u32; 11],
}
Expand description
struct v4l2_subdev_routing - Subdev routing information
@which: configuration type (from enum v4l2_subdev_format_whence) @len_routes: the length of the routes array, in routes; set by the user, not modified by the kernel @routes: pointer to the routes array @num_routes: the total number of routes, possibly more than fits in the routes array @reserved: drivers and applications must zero this array
Fields§
§which: __u32
§len_routes: __u32
§routes: __u64
§num_routes: __u32
§reserved: [__u32; 11]
Trait Implementations§
Source§impl Clone for v4l2_subdev_routing
impl Clone for v4l2_subdev_routing
Source§fn clone(&self) -> v4l2_subdev_routing
fn clone(&self) -> v4l2_subdev_routing
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_routing
impl Debug for v4l2_subdev_routing
impl Copy for v4l2_subdev_routing
Auto Trait Implementations§
impl Freeze for v4l2_subdev_routing
impl RefUnwindSafe for v4l2_subdev_routing
impl Send for v4l2_subdev_routing
impl Sync for v4l2_subdev_routing
impl Unpin for v4l2_subdev_routing
impl UnwindSafe for v4l2_subdev_routing
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