pub enum AddOutcome {
Added,
AlreadyEnabled,
}Expand description
Result of one add invocation.
Variants§
Added
Feature added to the features array (and the features key
was created if it didn’t exist).
AlreadyEnabled
Feature was already in the array.
Trait Implementations§
Source§impl Debug for AddOutcome
impl Debug for AddOutcome
Source§impl PartialEq for AddOutcome
impl PartialEq for AddOutcome
Source§fn eq(&self, other: &AddOutcome) -> bool
fn eq(&self, other: &AddOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AddOutcome
impl StructuralPartialEq for AddOutcome
Auto Trait Implementations§
impl Freeze for AddOutcome
impl RefUnwindSafe for AddOutcome
impl Send for AddOutcome
impl Sync for AddOutcome
impl Unpin for AddOutcome
impl UnsafeUnpin for AddOutcome
impl UnwindSafe for AddOutcome
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.