pub struct EnrichmentPatch {
pub entities: Vec<String>,
pub tags: Vec<String>,
pub triggers: Vec<String>,
}Expand description
Result of enrichment analysis for a single record.
Fields§
§entities: Vec<String>§triggers: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for EnrichmentPatch
impl Clone for EnrichmentPatch
Source§fn clone(&self) -> EnrichmentPatch
fn clone(&self) -> EnrichmentPatch
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 EnrichmentPatch
impl Debug for EnrichmentPatch
Source§impl Default for EnrichmentPatch
impl Default for EnrichmentPatch
Source§fn default() -> EnrichmentPatch
fn default() -> EnrichmentPatch
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EnrichmentPatch
impl RefUnwindSafe for EnrichmentPatch
impl Send for EnrichmentPatch
impl Sync for EnrichmentPatch
impl Unpin for EnrichmentPatch
impl UnsafeUnpin for EnrichmentPatch
impl UnwindSafe for EnrichmentPatch
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