[][src]Enum ultra_tournament::TournamentEdge

pub enum TournamentEdge {
    A,
    B,
}

The edge weight of a Tournament's internal graph.

Convertible to TournamentRoundResult

Variants

A

Represents a connection from one round to the next on size A.

B

Represents a connection from one round to the next on side B.

Trait Implementations

impl Clone for TournamentEdge[src]

impl Copy for TournamentEdge[src]

impl Debug for TournamentEdge[src]

impl Eq for TournamentEdge[src]

impl From<TournamentEdge> for TournamentRoundResult[src]

impl From<TournamentRoundResult> for TournamentEdge[src]

impl PartialEq<TournamentEdge> for TournamentEdge[src]

impl StructuralEq for TournamentEdge[src]

impl StructuralPartialEq for TournamentEdge[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Event for T where
    T: Send + Sync + 'static, 

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

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

impl<T> Resource for T where
    T: Any + Send + Sync

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>,