[][src]Struct uvc_src::uvc_input_terminal

#[repr(C)]pub struct uvc_input_terminal {
    pub prev: *mut uvc_input_terminal,
    pub next: *mut uvc_input_terminal,
    pub bTerminalID: u8,
    pub wTerminalType: uvc_it_type,
    pub wObjectiveFocalLengthMin: u16,
    pub wObjectiveFocalLengthMax: u16,
    pub wOcularFocalLength: u16,
    pub bmControls: u64,
}

Representation of the interface that brings data into the UVC device

Fields

prev: *mut uvc_input_terminalnext: *mut uvc_input_terminalbTerminalID: u8

Index of the terminal within the device

wTerminalType: uvc_it_type

Type of terminal (e.g., camera)

wObjectiveFocalLengthMin: u16wObjectiveFocalLengthMax: u16wOcularFocalLength: u16bmControls: u64

Camera controls (meaning of bits given in {uvc_ct_ctrl_selector})

Trait Implementations

impl Clone for uvc_input_terminal[src]

impl Copy for uvc_input_terminal[src]

impl Debug for uvc_input_terminal[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.