[][src]Struct rusb::DeviceList

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

A list of detected USB devices.

Methods

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

pub fn len(&self) -> usize[src]

Returns the number of devices in the list.

pub fn is_empty(&self) -> bool[src]

Returns true if the list is empty, else returns false.

Important traits for Devices<'a, 'b>
pub fn iter<'b>(&'b self) -> Devices<'a, 'b>[src]

Returns an iterator over the devices in the list.

The iterator yields a sequence of Device objects.

Trait Implementations

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

fn drop(&mut self)[src]

Frees the device list.

Auto Trait Implementations

impl<'a> !Sync for DeviceList<'a>

impl<'a> !Send for DeviceList<'a>

impl<'a> Unpin for DeviceList<'a>

impl<'a> RefUnwindSafe for DeviceList<'a>

impl<'a> UnwindSafe for DeviceList<'a>

Blanket Implementations

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.

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

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

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