pub struct VertexPayload<G>where
G: Geometry,{
pub geometry: G::Vertex,
/* private fields */
}
Expand description
Vertex payload.
Contains the vertex attribute of a graph’s Geometry
.
Fields§
§geometry: G::Vertex
Trait Implementations§
Source§impl<G> Clone for VertexPayload<G>
impl<G> Clone for VertexPayload<G>
Source§fn clone(&self) -> VertexPayload<G>
fn clone(&self) -> VertexPayload<G>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<G> Debug for VertexPayload<G>where
G: Geometry,
impl<G> Debug for VertexPayload<G>where
G: Geometry,
Source§impl<G, H> FromInteriorGeometry<VertexPayload<H>> for VertexPayload<G>
impl<G, H> FromInteriorGeometry<VertexPayload<H>> for VertexPayload<G>
fn from_interior_geometry(vertex: VertexPayload<H>) -> Self
Source§impl<G> Hash for VertexPayload<G>where
G: Geometry,
impl<G> Hash for VertexPayload<G>where
G: Geometry,
Auto Trait Implementations§
impl<G> Freeze for VertexPayload<G>
impl<G> RefUnwindSafe for VertexPayload<G>
impl<G> Send for VertexPayload<G>
impl<G> Sync for VertexPayload<G>
impl<G> Unpin for VertexPayload<G>
impl<G> UnwindSafe for VertexPayload<G>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FromGeometry<T> for T
impl<T> FromGeometry<T> for T
fn from_geometry(other: T) -> T
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 moreSource§impl<T, U> IntoGeometry<U> for Twhere
U: FromGeometry<T>,
impl<T, U> IntoGeometry<U> for Twhere
U: FromGeometry<T>,
fn into_geometry(self) -> U
Source§impl<T, U> IntoInteriorGeometry<U> for Twhere
U: FromInteriorGeometry<T>,
impl<T, U> IntoInteriorGeometry<U> for Twhere
U: FromInteriorGeometry<T>,
fn into_interior_geometry(self) -> U
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§unsafe fn to_subset_unchecked(&self) -> SS
unsafe fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.