pub enum ReactorBridgeSinkError {
AttemptClosure,
}
Expand description
An error type for bridge sink.
Variants§
AttemptClosure
A bridge is an RAII Guard, it can only be closed by dropping the value.
Trait Implementations§
source§impl Clone for ReactorBridgeSinkError
impl Clone for ReactorBridgeSinkError
source§fn clone(&self) -> ReactorBridgeSinkError
fn clone(&self) -> ReactorBridgeSinkError
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 ReactorBridgeSinkError
impl Debug for ReactorBridgeSinkError
source§impl Display for ReactorBridgeSinkError
impl Display for ReactorBridgeSinkError
source§impl Error for ReactorBridgeSinkError
impl Error for ReactorBridgeSinkError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
source§impl PartialEq for ReactorBridgeSinkError
impl PartialEq for ReactorBridgeSinkError
source§fn eq(&self, other: &ReactorBridgeSinkError) -> bool
fn eq(&self, other: &ReactorBridgeSinkError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ReactorBridgeSinkError
impl StructuralEq for ReactorBridgeSinkError
impl StructuralPartialEq for ReactorBridgeSinkError
Auto Trait Implementations§
impl RefUnwindSafe for ReactorBridgeSinkError
impl Send for ReactorBridgeSinkError
impl Sync for ReactorBridgeSinkError
impl Unpin for ReactorBridgeSinkError
impl UnwindSafe for ReactorBridgeSinkError
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