pub enum MetaMinerTarget {
Dev,
Test,
Formal,
Other(Url, Url),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MetaMinerTarget
impl Clone for MetaMinerTarget
Source§fn clone(&self) -> MetaMinerTarget
fn clone(&self) -> MetaMinerTarget
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 MetaMinerTarget
impl Debug for MetaMinerTarget
Source§impl Default for MetaMinerTarget
impl Default for MetaMinerTarget
Source§impl Display for MetaMinerTarget
impl Display for MetaMinerTarget
Source§impl FromStr for MetaMinerTarget
impl FromStr for MetaMinerTarget
Source§impl PartialEq for MetaMinerTarget
impl PartialEq for MetaMinerTarget
impl Eq for MetaMinerTarget
impl StructuralPartialEq for MetaMinerTarget
Auto Trait Implementations§
impl Freeze for MetaMinerTarget
impl RefUnwindSafe for MetaMinerTarget
impl Send for MetaMinerTarget
impl Sync for MetaMinerTarget
impl Unpin for MetaMinerTarget
impl UnwindSafe for MetaMinerTarget
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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