pub struct GraphNode4D {
pub id: u64,
pub x: f32,
pub y: f32,
pub z: f32,
pub begin_ts: u64,
pub end_ts: u64,
pub properties: GraphProperties,
pub successors: Vec<TemporalEdge>,
}Fields§
§id: u64§x: f32§y: f32§z: f32§begin_ts: u64§end_ts: u64§properties: GraphProperties§successors: Vec<TemporalEdge>Implementations§
Trait Implementations§
Source§impl Clone for GraphNode4D
impl Clone for GraphNode4D
Source§fn clone(&self) -> GraphNode4D
fn clone(&self) -> GraphNode4D
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GraphNode4D
impl Debug for GraphNode4D
Source§impl PartialEq for GraphNode4D
impl PartialEq for GraphNode4D
Source§fn eq(&self, other: &GraphNode4D) -> bool
fn eq(&self, other: &GraphNode4D) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GraphNode4D
Auto Trait Implementations§
impl Freeze for GraphNode4D
impl RefUnwindSafe for GraphNode4D
impl Send for GraphNode4D
impl Sync for GraphNode4D
impl Unpin for GraphNode4D
impl UnsafeUnpin for GraphNode4D
impl UnwindSafe for GraphNode4D
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