Struct embassy_usb_driver::EndpointAllocError
source · pub struct EndpointAllocError;
Expand description
Allocating an endpoint failed.
This can be due to running out of endpoints, or out of endpoint memory, or because the hardware doesn’t support the requested combination of features.
Trait Implementations§
source§impl Clone for EndpointAllocError
impl Clone for EndpointAllocError
source§fn clone(&self) -> EndpointAllocError
fn clone(&self) -> EndpointAllocError
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 EndpointAllocError
impl Debug for EndpointAllocError
source§impl PartialEq for EndpointAllocError
impl PartialEq for EndpointAllocError
source§fn eq(&self, other: &EndpointAllocError) -> bool
fn eq(&self, other: &EndpointAllocError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for EndpointAllocError
impl Eq for EndpointAllocError
impl StructuralPartialEq for EndpointAllocError
Auto Trait Implementations§
impl Freeze for EndpointAllocError
impl RefUnwindSafe for EndpointAllocError
impl Send for EndpointAllocError
impl Sync for EndpointAllocError
impl Unpin for EndpointAllocError
impl UnwindSafe for EndpointAllocError
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