pub struct ConcurrencyError(pub String);Expand description
Concurrency-related errors.
Tuple Fields§
§0: StringTrait Implementations§
Source§impl Debug for ConcurrencyError
impl Debug for ConcurrencyError
Source§impl Display for ConcurrencyError
impl Display for ConcurrencyError
Source§impl Error for ConcurrencyError
impl Error for ConcurrencyError
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()
Source§impl<T> From<PoisonError<T>> for ConcurrencyError
impl<T> From<PoisonError<T>> for ConcurrencyError
Source§fn from(err: PoisonError<T>) -> Self
fn from(err: PoisonError<T>) -> Self
Converts to this type from the input type.
Source§impl IntoVoltError for ConcurrencyError
impl IntoVoltError for ConcurrencyError
fn into_volt_error(self) -> VoltError
Auto Trait Implementations§
impl Freeze for ConcurrencyError
impl RefUnwindSafe for ConcurrencyError
impl Send for ConcurrencyError
impl Sync for ConcurrencyError
impl Unpin for ConcurrencyError
impl UnwindSafe for ConcurrencyError
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