pub struct EntityMetadata {
pub properties: HashMap<String, String>,
pub confidence: Option<f32>,
pub schema: Option<String>,
}Expand description
Metadata associated with an entity
Fields§
§properties: HashMap<String, String>Key-value pairs of metadata
confidence: Option<f32>Confidence score (0.0 to 1.0)
schema: Option<String>Schema URL if applicable
Implementations§
Source§impl EntityMetadata
impl EntityMetadata
pub fn new() -> Self
pub fn with_property( self, key: impl Into<String>, value: impl Into<String>, ) -> Self
pub fn with_confidence(self, confidence: f32) -> Self
pub fn with_schema(self, schema: impl Into<String>) -> Self
Trait Implementations§
Source§impl Clone for EntityMetadata
impl Clone for EntityMetadata
Source§fn clone(&self) -> EntityMetadata
fn clone(&self) -> EntityMetadata
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 EntityMetadata
impl Debug for EntityMetadata
Source§impl Default for EntityMetadata
impl Default for EntityMetadata
Source§impl<'de> Deserialize<'de> for EntityMetadata
impl<'de> Deserialize<'de> for EntityMetadata
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
Source§impl PartialEq for EntityMetadata
impl PartialEq for EntityMetadata
Source§impl Serialize for EntityMetadata
impl Serialize for EntityMetadata
impl StructuralPartialEq for EntityMetadata
Auto Trait Implementations§
impl Freeze for EntityMetadata
impl RefUnwindSafe for EntityMetadata
impl Send for EntityMetadata
impl Sync for EntityMetadata
impl Unpin for EntityMetadata
impl UnwindSafe for EntityMetadata
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