pub struct GraphSemanticCandidate {
pub node: GraphNode,
pub score: f64,
}Fields§
§node: GraphNode§score: f64Trait Implementations§
Source§impl Clone for GraphSemanticCandidate
impl Clone for GraphSemanticCandidate
Source§fn clone(&self) -> GraphSemanticCandidate
fn clone(&self) -> GraphSemanticCandidate
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 GraphSemanticCandidate
impl Debug for GraphSemanticCandidate
Source§impl PartialEq for GraphSemanticCandidate
impl PartialEq for GraphSemanticCandidate
Source§fn eq(&self, other: &GraphSemanticCandidate) -> bool
fn eq(&self, other: &GraphSemanticCandidate) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GraphSemanticCandidate
Auto Trait Implementations§
impl Freeze for GraphSemanticCandidate
impl RefUnwindSafe for GraphSemanticCandidate
impl Send for GraphSemanticCandidate
impl Sync for GraphSemanticCandidate
impl Unpin for GraphSemanticCandidate
impl UnsafeUnpin for GraphSemanticCandidate
impl UnwindSafe for GraphSemanticCandidate
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