pub struct NodeValues<NV>(/* private fields */);Implementations§
Trait Implementations§
Source§impl<'gdl, NV> From<&'gdl Graph> for NodeValues<NV>
Available on crate feature gdl only.
impl<'gdl, NV> From<&'gdl Graph> for NodeValues<NV>
Available on crate feature
gdl only.Source§impl<NV> FromIterator<NV> for NodeValues<NV>
impl<NV> FromIterator<NV> for NodeValues<NV>
Source§fn from_iter<T: IntoIterator<Item = NV>>(iter: T) -> Self
fn from_iter<T: IntoIterator<Item = NV>>(iter: T) -> Self
Creates a value from an iterator. Read more
Auto Trait Implementations§
impl<NV> Freeze for NodeValues<NV>
impl<NV> RefUnwindSafe for NodeValues<NV>where
NV: RefUnwindSafe,
impl<NV> Send for NodeValues<NV>where
NV: Send,
impl<NV> Sync for NodeValues<NV>where
NV: Sync,
impl<NV> Unpin for NodeValues<NV>
impl<NV> UnwindSafe for NodeValues<NV>where
NV: 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