[][src]Struct libmtp_rs::device::raw::RawDevice

pub struct RawDevice { /* fields omitted */ }

This struct handles a raw device, which should be opened with open or open_uncached if you want to manage the proper MTP device.

Implementations

impl RawDevice[src]

pub fn open(&self) -> Option<MtpDevice>[src]

Open an MTP device from this raw device descriptor, this method may cache devices, thus may be slower.

pub fn open_uncached(&self) -> Option<MtpDevice>[src]

Open an MTP device from this raw device descriptor, uncached version.

pub fn bus_number(&self) -> u32[src]

Returns the bus number of this raw device.

pub fn dev_number(&self) -> u8[src]

Returns the device number of this raw device.

pub fn device_entry(&self) -> DeviceEntry[src]

Returns the device entry of this raw device.

Trait Implementations

impl Debug for RawDevice[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, 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.