#[repr(C)]pub struct v4l2_subdev_capability {
pub version: __u32,
pub capabilities: __u32,
pub reserved: [__u32; 14],
}
Expand description
struct v4l2_subdev_capability - subdev capabilities @version: the driver versioning number @capabilities: the subdev capabilities, see V4L2_SUBDEV_CAP_* @reserved: for future use, set to zero for now
Fields§
§version: __u32
§capabilities: __u32
§reserved: [__u32; 14]
Trait Implementations§
Source§impl Clone for v4l2_subdev_capability
impl Clone for v4l2_subdev_capability
Source§fn clone(&self) -> v4l2_subdev_capability
fn clone(&self) -> v4l2_subdev_capability
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_capability
impl Debug for v4l2_subdev_capability
impl Copy for v4l2_subdev_capability
Auto Trait Implementations§
impl Freeze for v4l2_subdev_capability
impl RefUnwindSafe for v4l2_subdev_capability
impl Send for v4l2_subdev_capability
impl Sync for v4l2_subdev_capability
impl Unpin for v4l2_subdev_capability
impl UnwindSafe for v4l2_subdev_capability
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