pub enum PauseError {
UnknownNode(NodeId),
}Expand description
Errors returnable by Core::pause and Core::resume.
Variants§
Trait Implementations§
Source§impl Clone for PauseError
impl Clone for PauseError
Source§fn clone(&self) -> PauseError
fn clone(&self) -> PauseError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PauseError
impl Debug for PauseError
Source§impl Display for PauseError
impl Display for PauseError
Source§impl Error for PauseError
impl Error for PauseError
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 PartialEq for PauseError
impl PartialEq for PauseError
Source§fn eq(&self, other: &PauseError) -> bool
fn eq(&self, other: &PauseError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PauseError
Auto Trait Implementations§
impl Freeze for PauseError
impl RefUnwindSafe for PauseError
impl Send for PauseError
impl Sync for PauseError
impl Unpin for PauseError
impl UnsafeUnpin for PauseError
impl UnwindSafe for PauseError
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