[][src]Trait shine_graph::join::IntoJoinExt

pub trait IntoJoinExt: IntoJoin {
    fn join_all<F>(self, f: F)
    where
        F: FnMut(usize, <Self::Store as IndexExcl<usize>>::Item),
        Self: Sized
, { ... }
fn join_until<F>(self, f: F)
    where
        F: FnMut(usize, <Self::Store as IndexExcl<usize>>::Item) -> bool,
        Self: Sized
, { ... } }

Provided methods

fn join_all<F>(self, f: F) where
    F: FnMut(usize, <Self::Store as IndexExcl<usize>>::Item),
    Self: Sized

fn join_until<F>(self, f: F) where
    F: FnMut(usize, <Self::Store as IndexExcl<usize>>::Item) -> bool,
    Self: Sized

Loading content...

Implementors

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

fn join_all<F>(self, f: F) where
    F: FnMut(usize, <Self::Store as IndexExcl<usize>>::Item),
    Self: Sized
[src]

fn join_until<F>(self, f: F) where
    F: FnMut(usize, <Self::Store as IndexExcl<usize>>::Item) -> bool,
    Self: Sized
[src]

Loading content...