pub struct KnowledgeGraphOut {
pub entities: Vec<Entity>,
pub relations: Vec<Relation>,
}Fields§
§entities: Vec<Entity>§relations: Vec<Relation>Trait Implementations§
Source§impl Clone for KnowledgeGraphOut
impl Clone for KnowledgeGraphOut
Source§fn clone(&self) -> KnowledgeGraphOut
fn clone(&self) -> KnowledgeGraphOut
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 KnowledgeGraphOut
impl Debug for KnowledgeGraphOut
Source§impl<'de> Deserialize<'de> for KnowledgeGraphOut
impl<'de> Deserialize<'de> for KnowledgeGraphOut
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
impl Eq for KnowledgeGraphOut
Source§impl PartialEq for KnowledgeGraphOut
impl PartialEq for KnowledgeGraphOut
Source§fn eq(&self, other: &KnowledgeGraphOut) -> bool
fn eq(&self, other: &KnowledgeGraphOut) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for KnowledgeGraphOut
impl Serialize for KnowledgeGraphOut
impl StructuralPartialEq for KnowledgeGraphOut
Auto Trait Implementations§
impl Freeze for KnowledgeGraphOut
impl RefUnwindSafe for KnowledgeGraphOut
impl Send for KnowledgeGraphOut
impl Sync for KnowledgeGraphOut
impl Unpin for KnowledgeGraphOut
impl UnsafeUnpin for KnowledgeGraphOut
impl UnwindSafe for KnowledgeGraphOut
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