pub enum SpawnInsideError {
Restrict(RestrictSelfError),
Child(Error),
}Variants§
Restrict(RestrictSelfError)
Child(Error)
Trait Implementations§
Source§impl Debug for SpawnInsideError
impl Debug for SpawnInsideError
Source§impl Display for SpawnInsideError
impl Display for SpawnInsideError
Source§impl Error for SpawnInsideError
impl Error for SpawnInsideError
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 !RefUnwindSafe for SpawnInsideError
impl !UnwindSafe for SpawnInsideError
impl Freeze for SpawnInsideError
impl Send for SpawnInsideError
impl Sync for SpawnInsideError
impl Unpin for SpawnInsideError
impl UnsafeUnpin for SpawnInsideError
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