[][src]Struct uvc::Device

pub struct Device<'a> { /* fields omitted */ }

Device that can be opened

Implementations

impl<'a> Device<'a>[src]

pub fn open(&'a self) -> Result<DeviceHandle<'a>>[src]

Create handle to a device

pub fn description(&self) -> Result<DeviceDescription>[src]

Get the description of a device

#[must_use]pub fn bus_number(&self) -> u8[src]

Bus number of which this device is connected

#[must_use]pub fn device_address(&self) -> u8[src]

Device address within the bus

Trait Implementations

impl<'a> Debug for Device<'a>[src]

impl<'a> Drop for Device<'a>[src]

impl<'a> Send for Device<'a>[src]

impl<'a> Sync for Device<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Device<'a>

impl<'a> Unpin for Device<'a>

impl<'a> UnwindSafe for Device<'a>

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, 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.