pub struct Instance<G> {
pub graph: G,
pub src: usize,
pub snk: usize,
pub upper: Vec<usize>,
}Fields§
§graph: GThe graph.
src: usizeThe source node id.
snk: usizeThe sink node id.
upper: Vec<usize>The upper bounds.
Auto Trait Implementations§
impl<G> Freeze for Instance<G>where
G: Freeze,
impl<G> RefUnwindSafe for Instance<G>where
G: RefUnwindSafe,
impl<G> Send for Instance<G>where
G: Send,
impl<G> Sync for Instance<G>where
G: Sync,
impl<G> Unpin for Instance<G>where
G: Unpin,
impl<G> UnwindSafe for Instance<G>where
G: 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