pub struct CycleError { /* private fields */ }Expand description
Error when a circular dependency is detected.
Implementations§
Source§impl CycleError
impl CycleError
Trait Implementations§
Source§impl Clone for CycleError
impl Clone for CycleError
Source§fn clone(&self) -> CycleError
fn clone(&self) -> CycleError
Returns a duplicate 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 CycleError
impl Debug for CycleError
Source§impl Display for CycleError
impl Display for CycleError
Source§impl Error for CycleError
impl Error for CycleError
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 CycleError
impl PartialEq for CycleError
impl Eq for CycleError
impl StructuralPartialEq for CycleError
Auto Trait Implementations§
impl Freeze for CycleError
impl RefUnwindSafe for CycleError
impl Send for CycleError
impl Sync for CycleError
impl Unpin for CycleError
impl UnsafeUnpin for CycleError
impl UnwindSafe for CycleError
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