[][src]Struct libusb_native::descriptor::usbi_transfer

#[repr(C)]pub struct usbi_transfer {
    pub num_iso_packets: c_int,
    pub list: list_head,
    pub completed_list: list_head,
    pub timeout: timespec,
    pub transferred: c_int,
    pub stream_id: uint32_t,
    pub state_flags: uint32_t,
    pub timeout_flags: uint32_t,
    pub lock: usbi_mutex_t,
    pub priv_0: *mut c_void,
}

Fields

num_iso_packets: c_intlist: list_headcompleted_list: list_headtimeout: timespectransferred: c_intstream_id: uint32_tstate_flags: uint32_ttimeout_flags: uint32_tlock: usbi_mutex_tpriv_0: *mut c_void

Trait Implementations

impl Clone for usbi_transfer[src]

impl Copy for usbi_transfer[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.