[][src]Struct rs_graph::search::biastar::BiData

pub struct BiData<E, D, H> { /* fields omitted */ }

Predecessor edge information.

Trait Implementations

impl<E: Clone, D: Clone, H: Clone> Clone for BiData<E, D, H>[src]

impl<E: Copy, D: Copy, H: Copy> Copy for BiData<E, D, H>[src]

impl<E: Debug, D: Debug, H: Debug> Debug for BiData<E, D, H>[src]

impl<E, D, H> PartialEq<BiData<E, D, H>> for BiData<E, D, H> where
    D: PartialEq
[src]

impl<E, D, H> PartialOrd<BiData<E, D, H>> for BiData<E, D, H> where
    D: PartialOrd + Clone,
    H: Add<D, Output = D> + Clone
[src]

Auto Trait Implementations

impl<E, D, H> RefUnwindSafe for BiData<E, D, H> where
    D: RefUnwindSafe,
    E: RefUnwindSafe,
    H: RefUnwindSafe

impl<E, D, H> Send for BiData<E, D, H> where
    D: Send,
    E: Send,
    H: Send

impl<E, D, H> Sync for BiData<E, D, H> where
    D: Sync,
    E: Sync,
    H: Sync

impl<E, D, H> Unpin for BiData<E, D, H> where
    D: Unpin,
    E: Unpin,
    H: Unpin

impl<E, D, H> UnwindSafe for BiData<E, D, H> where
    D: UnwindSafe,
    E: UnwindSafe,
    H: 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<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.