pub struct NativeGraphEdge {
pub edge_id: u64,
pub from_node: String,
pub to_node: String,
pub label: String,
pub weight: f32,
}Expand description
One decoded graph edge.
Fields§
§edge_id: u64Raw entity id of the edge (EntityId::raw() in the engine).
from_node: String§to_node: String§label: String§weight: f32Trait Implementations§
Source§impl Clone for NativeGraphEdge
impl Clone for NativeGraphEdge
Source§fn clone(&self) -> NativeGraphEdge
fn clone(&self) -> NativeGraphEdge
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 NativeGraphEdge
impl Debug for NativeGraphEdge
Source§impl PartialEq for NativeGraphEdge
impl PartialEq for NativeGraphEdge
impl StructuralPartialEq for NativeGraphEdge
Auto Trait Implementations§
impl Freeze for NativeGraphEdge
impl RefUnwindSafe for NativeGraphEdge
impl Send for NativeGraphEdge
impl Sync for NativeGraphEdge
impl Unpin for NativeGraphEdge
impl UnsafeUnpin for NativeGraphEdge
impl UnwindSafe for NativeGraphEdge
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