pub enum GatheringState {
Unspecified,
New,
Gathering,
Complete,
}Expand description
Describes the state of the candidate gathering process.
Variants§
Unspecified
New
Indicates candidate gathering is not yet started.
Gathering
Indicates candidate gathering is ongoing.
Complete
Indicates candidate gathering has been completed.
Trait Implementations§
Source§impl Clone for GatheringState
impl Clone for GatheringState
Source§fn clone(&self) -> GatheringState
fn clone(&self) -> GatheringState
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 GatheringState
Source§impl Default for GatheringState
impl Default for GatheringState
Source§fn default() -> GatheringState
fn default() -> GatheringState
Returns the “default value” for a type. Read more
Source§impl Display for GatheringState
impl Display for GatheringState
impl Eq for GatheringState
Source§impl From<u8> for GatheringState
impl From<u8> for GatheringState
Source§impl PartialEq for GatheringState
impl PartialEq for GatheringState
Source§fn eq(&self, other: &GatheringState) -> bool
fn eq(&self, other: &GatheringState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GatheringState
Auto Trait Implementations§
impl Freeze for GatheringState
impl RefUnwindSafe for GatheringState
impl Send for GatheringState
impl Sync for GatheringState
impl Unpin for GatheringState
impl UnsafeUnpin for GatheringState
impl UnwindSafe for GatheringState
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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