Enum rs_graph::search::biastar::Direction [−][src]
pub enum Direction<E> {
Forward(E),
Backward(E),
}Direction of search.
Variants
Edge in forward search.
Edge in backward search.
Trait Implementations
impl<E: Copy> Copy for Direction<E>[src]
impl<E: Eq> Eq for Direction<E>[src]
impl<E> StructuralEq for Direction<E>[src]
impl<E> StructuralPartialEq for Direction<E>[src]
Auto Trait Implementations
impl<E> RefUnwindSafe for Direction<E> where
E: RefUnwindSafe,
E: RefUnwindSafe,
impl<E> Send for Direction<E> where
E: Send,
E: Send,
impl<E> Sync for Direction<E> where
E: Sync,
E: Sync,
impl<E> Unpin for Direction<E> where
E: Unpin,
E: Unpin,
impl<E> UnwindSafe for Direction<E> where
E: UnwindSafe,
E: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more