pub enum ControlEndpointState {
SetupStage,
DataStage,
StatusStage,
}Variants§
SetupStage
Control endpoint should receive setup stage next.
DataStage
Control endpoint should receive data stage next.
StatusStage
Control endpoint should receive status stage next.
Trait Implementations§
Source§impl Clone for ControlEndpointState
impl Clone for ControlEndpointState
Source§fn clone(&self) -> ControlEndpointState
fn clone(&self) -> ControlEndpointState
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 PartialEq for ControlEndpointState
impl PartialEq for ControlEndpointState
impl Copy for ControlEndpointState
impl Eq for ControlEndpointState
impl StructuralPartialEq for ControlEndpointState
Auto Trait Implementations§
impl Freeze for ControlEndpointState
impl RefUnwindSafe for ControlEndpointState
impl Send for ControlEndpointState
impl Sync for ControlEndpointState
impl Unpin for ControlEndpointState
impl UnwindSafe for ControlEndpointState
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