pub(crate) enum DecyclerError {
DepthLimitExceeded,
CycleDetected,
}
Variants§
Trait Implementations§
Source§impl Clone for DecyclerError
impl Clone for DecyclerError
Source§fn clone(&self) -> DecyclerError
fn clone(&self) -> DecyclerError
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 DecyclerError
impl Debug for DecyclerError
Source§impl From<DecyclerError> for PaintError
impl From<DecyclerError> for PaintError
Source§fn from(value: DecyclerError) -> Self
fn from(value: DecyclerError) -> Self
Converts to this type from the input type.
impl Copy for DecyclerError
Auto Trait Implementations§
impl Freeze for DecyclerError
impl RefUnwindSafe for DecyclerError
impl Send for DecyclerError
impl Sync for DecyclerError
impl Unpin for DecyclerError
impl UnwindSafe for DecyclerError
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