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<TryWriteError> for TryWriteError
impl PartialEq<TryWriteError> 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 ==.