pub enum CycleHandling {
Ignore,
Clear,
Error,
Skip,
OnlyPrior,
}Variants§
Trait Implementations§
Source§impl Clone for CycleHandling
impl Clone for CycleHandling
Source§fn clone(&self) -> CycleHandling
fn clone(&self) -> CycleHandling
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 moreimpl Copy for CycleHandling
Source§impl Debug for CycleHandling
impl Debug for CycleHandling
Source§impl Default for CycleHandling
impl Default for CycleHandling
Source§fn default() -> CycleHandling
fn default() -> CycleHandling
Returns the “default value” for a type. Read more
Source§impl PartialEq for CycleHandling
impl PartialEq for CycleHandling
Source§fn eq(&self, other: &CycleHandling) -> bool
fn eq(&self, other: &CycleHandling) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CycleHandling
Auto Trait Implementations§
impl Freeze for CycleHandling
impl RefUnwindSafe for CycleHandling
impl Send for CycleHandling
impl Sync for CycleHandling
impl Unpin for CycleHandling
impl UnsafeUnpin for CycleHandling
impl UnwindSafe for CycleHandling
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