pub struct CfgGraphNode {
pub id: u64,
pub x: f32,
pub y: f32,
pub z: f32,
pub successors: Vec<u64>,
}Fields§
§id: u64§x: f32§y: f32§z: f32§successors: Vec<u64>Trait Implementations§
Source§impl Clone for CfgGraphNode
impl Clone for CfgGraphNode
Source§fn clone(&self) -> CfgGraphNode
fn clone(&self) -> CfgGraphNode
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 moreAuto Trait Implementations§
impl Freeze for CfgGraphNode
impl RefUnwindSafe for CfgGraphNode
impl Send for CfgGraphNode
impl Sync for CfgGraphNode
impl Unpin for CfgGraphNode
impl UnsafeUnpin for CfgGraphNode
impl UnwindSafe for CfgGraphNode
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