#[repr(C)]pub struct v4l2_subdev_route {
pub sink_pad: __u32,
pub sink_stream: __u32,
pub source_pad: __u32,
pub source_stream: __u32,
pub flags: __u32,
pub reserved: [__u32; 5],
}
Expand description
struct v4l2_subdev_route - A route inside a subdev
@sink_pad: the sink pad index @sink_stream: the sink stream identifier @source_pad: the source pad index @source_stream: the source stream identifier @flags: route flags V4L2_SUBDEV_ROUTE_FL_* @reserved: drivers and applications must zero this array
Fields§
§sink_pad: __u32
§sink_stream: __u32
§source_pad: __u32
§source_stream: __u32
§flags: __u32
§reserved: [__u32; 5]
Trait Implementations§
Source§impl Clone for v4l2_subdev_route
impl Clone for v4l2_subdev_route
Source§fn clone(&self) -> v4l2_subdev_route
fn clone(&self) -> v4l2_subdev_route
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_route
impl Debug for v4l2_subdev_route
impl Copy for v4l2_subdev_route
Auto Trait Implementations§
impl Freeze for v4l2_subdev_route
impl RefUnwindSafe for v4l2_subdev_route
impl Send for v4l2_subdev_route
impl Sync for v4l2_subdev_route
impl Unpin for v4l2_subdev_route
impl UnwindSafe for v4l2_subdev_route
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