pub enum EndpointState {
Disabled,
Ctrl(CtrlState),
Bulk(TransferType, Option<BulkInState>, Option<BulkOutState>),
}
Variants§
Trait Implementations§
Source§impl Clone for EndpointState
impl Clone for EndpointState
Source§fn clone(&self) -> EndpointState
fn clone(&self) -> EndpointState
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EndpointState
impl Debug for EndpointState
impl Copy for EndpointState
Auto Trait Implementations§
impl Freeze for EndpointState
impl RefUnwindSafe for EndpointState
impl Send for EndpointState
impl Sync for EndpointState
impl Unpin for EndpointState
impl UnwindSafe for EndpointState
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