[][src]Struct tree_automata::Sorted

pub struct Sorted<X, T>(pub X, pub T);

Implementations

impl<X, T> Sorted<X, T>[src]

pub fn new(x: X, t: T) -> Sorted<X, T>[src]

Trait Implementations

impl<X: Clone, T: Clone> Clone for Sorted<X, T>[src]

impl<X: Copy, T: Copy> Copy for Sorted<X, T>[src]

impl<X: Debug, T: Debug> Debug for Sorted<X, T>[src]

impl<X: Display, T: Display> Display for Sorted<X, T>[src]

impl<X: Eq, T: Eq> Eq for Sorted<X, T>[src]

impl<X: Hash, T: Hash> Hash for Sorted<X, T>[src]

impl<X: Ord, T: Ord> Ord for Sorted<X, T>[src]

impl<X: PartialEq, T: PartialEq> PartialEq<Sorted<X, T>> for Sorted<X, T>[src]

impl<X: PartialOrd, T: PartialOrd> PartialOrd<Sorted<X, T>> for Sorted<X, T>[src]

impl<X, T> SortedWith<T> for Sorted<X, T>[src]

Auto Trait Implementations

impl<X, T> RefUnwindSafe for Sorted<X, T> where
    T: RefUnwindSafe,
    X: RefUnwindSafe

impl<X, T> Send for Sorted<X, T> where
    T: Send,
    X: Send

impl<X, T> Sync for Sorted<X, T> where
    T: Sync,
    X: Sync

impl<X, T> Unpin for Sorted<X, T> where
    T: Unpin,
    X: Unpin

impl<X, T> UnwindSafe for Sorted<X, T> where
    T: UnwindSafe,
    X: UnwindSafe

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<F, Q> LanguageState<F, Automaton<F, Q, NoLabel>> for Q where
    F: Symbol,
    Q: State, 
[src]

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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