pub struct FromEdgesWithValues<NI, Edges, EV>{ /* private fields */ }Auto Trait Implementations§
impl<NI, Edges, EV> Freeze for FromEdgesWithValues<NI, Edges, EV>where
Edges: Freeze,
impl<NI, Edges, EV> RefUnwindSafe for FromEdgesWithValues<NI, Edges, EV>where
Edges: RefUnwindSafe,
NI: RefUnwindSafe,
impl<NI, Edges, EV> Send for FromEdgesWithValues<NI, Edges, EV>where
Edges: Send,
impl<NI, Edges, EV> Sync for FromEdgesWithValues<NI, Edges, EV>where
Edges: Sync,
impl<NI, Edges, EV> Unpin for FromEdgesWithValues<NI, Edges, EV>
impl<NI, Edges, EV> UnsafeUnpin for FromEdgesWithValues<NI, Edges, EV>where
Edges: UnsafeUnpin,
impl<NI, Edges, EV> UnwindSafe for FromEdgesWithValues<NI, Edges, EV>where
Edges: UnwindSafe,
NI: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more