pub struct VertexProperties {
pub vertex: Vertex,
pub props: Vec<NamedProperty>,
}
Expand description
A vertex with properties.
Fields§
§vertex: Vertex
The vertex.
props: Vec<NamedProperty>
All of the vertex’s properties.
Implementations§
Trait Implementations§
Source§impl Clone for VertexProperties
impl Clone for VertexProperties
Source§fn clone(&self) -> VertexProperties
fn clone(&self) -> VertexProperties
Returns a duplicate 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 Debug for VertexProperties
impl Debug for VertexProperties
Source§impl PartialEq for VertexProperties
impl PartialEq for VertexProperties
impl StructuralPartialEq for VertexProperties
Auto Trait Implementations§
impl Freeze for VertexProperties
impl RefUnwindSafe for VertexProperties
impl Send for VertexProperties
impl Sync for VertexProperties
impl Unpin for VertexProperties
impl UnwindSafe for VertexProperties
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