pub struct ConceptImplementation {
pub node_id: u64,
pub name: String,
pub file_path: String,
pub strength: f64,
pub aspect: String,
}Expand description
A node implementing a concept.
Fields§
§node_id: u64The implementing node.
name: StringNode name.
file_path: StringFile path.
strength: f64How strongly it implements the concept.
aspect: StringWhat aspect it implements.
Trait Implementations§
Source§impl Clone for ConceptImplementation
impl Clone for ConceptImplementation
Source§fn clone(&self) -> ConceptImplementation
fn clone(&self) -> ConceptImplementation
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 ConceptImplementation
impl Debug for ConceptImplementation
Source§impl<'de> Deserialize<'de> for ConceptImplementation
impl<'de> Deserialize<'de> for ConceptImplementation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ConceptImplementation
impl RefUnwindSafe for ConceptImplementation
impl Send for ConceptImplementation
impl Sync for ConceptImplementation
impl Unpin for ConceptImplementation
impl UnsafeUnpin for ConceptImplementation
impl UnwindSafe for ConceptImplementation
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