pub struct Instance<G>where
G: IndexGraph,{
pub graph: G,
pub weights: Vec<f64>,
pub coordinates: Vec<Vec<f64>>,
pub edgeattrs: Vec<Vec<EdgeAttr>>,
}
Expand description
An SteinLib instance.
Fields§
§graph: G
The graph.
weights: Vec<f64>
The edge weights.
coordinates: Vec<Vec<f64>>
The node coordinates.
edgeattrs: Vec<Vec<EdgeAttr>>
The edge attributes.
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