pub struct QueueFullError { /* private fields */ }Expand description
Error returned when the queue of RawFd is full.
Implementations§
Source§impl QueueFullError
impl QueueFullError
Sourcepub fn new() -> QueueFullError
pub fn new() -> QueueFullError
Create a new QueueFullError.
Trait Implementations§
Source§impl Debug for QueueFullError
impl Debug for QueueFullError
Source§impl Default for QueueFullError
impl Default for QueueFullError
Source§fn default() -> QueueFullError
fn default() -> QueueFullError
Returns the “default value” for a type. Read more
Source§impl Display for QueueFullError
impl Display for QueueFullError
Source§impl Error for QueueFullError
impl Error for QueueFullError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for QueueFullError
impl RefUnwindSafe for QueueFullError
impl Send for QueueFullError
impl Sync for QueueFullError
impl Unpin for QueueFullError
impl UnsafeUnpin for QueueFullError
impl UnwindSafe for QueueFullError
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