[][src]Enum cargo::core::resolver::ResolveBehavior

pub enum ResolveBehavior {
    V1,
    V2,
}

Resolver behavior, used to opt-in to new behavior that is backwards-incompatible via the resolver field in the manifest.

Variants

V1

V1 is the original resolver behavior.

V2

V2 adds the new feature resolver.

Implementations

impl ResolveBehavior[src]

Trait Implementations

impl Clone for ResolveBehavior[src]

impl Copy for ResolveBehavior[src]

impl Debug for ResolveBehavior[src]

impl Eq for ResolveBehavior[src]

impl Hash for ResolveBehavior[src]

impl PartialEq<ResolveBehavior> for ResolveBehavior[src]

impl StructuralEq for ResolveBehavior[src]

impl StructuralPartialEq for ResolveBehavior[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,