Enum embassy_sync::pipe::TryWriteError
source · pub enum TryWriteError {
Full,
}
Expand description
Error returned by try_write
.
Variants§
Full
No data could be written to the pipe because it is currently full, and writing would require blocking.
Trait Implementations§
source§impl Clone for TryWriteError
impl Clone for TryWriteError
source§fn clone(&self) -> TryWriteError
fn clone(&self) -> TryWriteError
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 TryWriteError
impl Debug for TryWriteError
source§impl PartialEq for TryWriteError
impl PartialEq for TryWriteError
source§fn eq(&self, other: &TryWriteError) -> bool
fn eq(&self, other: &TryWriteError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for TryWriteError
impl Eq for TryWriteError
impl StructuralPartialEq for TryWriteError
Auto Trait Implementations§
impl Freeze for TryWriteError
impl RefUnwindSafe for TryWriteError
impl Send for TryWriteError
impl Sync for TryWriteError
impl Unpin for TryWriteError
impl UnwindSafe for TryWriteError
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