Enum cow_dedupe::cli::YesNoChoice
source · pub enum YesNoChoice {
Yes,
No,
}Variants§
Implementations§
Trait Implementations§
source§impl Clone for YesNoChoice
impl Clone for YesNoChoice
source§fn clone(&self) -> YesNoChoice
fn clone(&self) -> YesNoChoice
Returns a copy 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 YesNoChoice
impl Debug for YesNoChoice
source§impl PartialEq<YesNoChoice> for YesNoChoice
impl PartialEq<YesNoChoice> for YesNoChoice
source§fn eq(&self, other: &YesNoChoice) -> bool
fn eq(&self, other: &YesNoChoice) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl ValueEnum for YesNoChoice
impl ValueEnum for YesNoChoice
impl Copy for YesNoChoice
impl Eq for YesNoChoice
impl StructuralEq for YesNoChoice
impl StructuralPartialEq for YesNoChoice
Auto Trait Implementations§
impl RefUnwindSafe for YesNoChoice
impl Send for YesNoChoice
impl Sync for YesNoChoice
impl Unpin for YesNoChoice
impl UnwindSafe for YesNoChoice
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>where
F: FnOnce(&Self) -> bool,
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>where F: FnOnce(&Self) -> bool,
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more