pub enum Type {
Bulk,
Control,
Interrupt {
transactions_per_microframe: Transactions,
},
Isochronous {
synchronization_type: SynchronizationType,
usage_type: UsageType,
transactions_per_microframe: Transactions,
},
}Expand description
End point type
Variants§
Bulk
Bulk endpoint
Control
Control endpoint
Interrupt
Interrupt endpoint
Fields
§
transactions_per_microframe: TransactionsTransactions per microframe
Isochronous
Isochronous endpoint
Fields
§
synchronization_type: SynchronizationTypeSynchronization type
§
transactions_per_microframe: TransactionsTransactions per microframe
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Type
impl RefUnwindSafe for Type
impl Send for Type
impl Sync for Type
impl Unpin for Type
impl UnwindSafe for Type
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more