pub struct EntityResolutionResult {
pub entities: Vec<Option<Value>>,
pub errors: Vec<String>,
}Expand description
Result of entity resolution
Fields§
§entities: Vec<Option<Value>>Resolved entities in same order as input representations
errors: Vec<String>Any errors encountered during resolution
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EntityResolutionResult
impl RefUnwindSafe for EntityResolutionResult
impl Send for EntityResolutionResult
impl Sync for EntityResolutionResult
impl Unpin for EntityResolutionResult
impl UnsafeUnpin for EntityResolutionResult
impl UnwindSafe for EntityResolutionResult
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