pub struct AeoClaim {
pub id: String,
pub predicate: String,
pub value: Value,
pub confidence: Option<String>,
}Expand description
One assertion the entity makes about itself.
Fields§
§id: StringStable identifier for the claim (used for round-tripping).
predicate: StringThe predicate / type — e.g. description, industry, headquartered_in.
value: ValueThe claim’s value — a string in the common case, but kept as JSON for flexibility.
confidence: Option<String>Self-reported confidence ("high", "medium", "low").
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AeoClaim
impl<'de> Deserialize<'de> for AeoClaim
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 AeoClaim
impl StructuralPartialEq for AeoClaim
Auto Trait Implementations§
impl Freeze for AeoClaim
impl RefUnwindSafe for AeoClaim
impl Send for AeoClaim
impl Sync for AeoClaim
impl Unpin for AeoClaim
impl UnsafeUnpin for AeoClaim
impl UnwindSafe for AeoClaim
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.