pub enum BulkOutState {
Init,
OutDelay,
OutData {
size: u32,
},
OutDma {
size: u32,
},
}
Variants§
Trait Implementations§
Source§impl Clone for BulkOutState
impl Clone for BulkOutState
Source§fn clone(&self) -> BulkOutState
fn clone(&self) -> BulkOutState
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 BulkOutState
impl Debug for BulkOutState
Source§impl PartialEq for BulkOutState
impl PartialEq for BulkOutState
impl Copy for BulkOutState
impl StructuralPartialEq for BulkOutState
Auto Trait Implementations§
impl Freeze for BulkOutState
impl RefUnwindSafe for BulkOutState
impl Send for BulkOutState
impl Sync for BulkOutState
impl Unpin for BulkOutState
impl UnwindSafe for BulkOutState
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