pub struct EntityExtractionResponse {
pub entities: Vec<ExtractedEntity>,
}Expand description
Response from POST /v1/memories/extract
Fields§
§entities: Vec<ExtractedEntity>Trait Implementations§
Source§impl Clone for EntityExtractionResponse
impl Clone for EntityExtractionResponse
Source§fn clone(&self) -> EntityExtractionResponse
fn clone(&self) -> EntityExtractionResponse
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 EntityExtractionResponse
impl Debug for EntityExtractionResponse
Source§impl<'de> Deserialize<'de> for EntityExtractionResponse
impl<'de> Deserialize<'de> for EntityExtractionResponse
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
Auto Trait Implementations§
impl Freeze for EntityExtractionResponse
impl RefUnwindSafe for EntityExtractionResponse
impl Send for EntityExtractionResponse
impl Sync for EntityExtractionResponse
impl Unpin for EntityExtractionResponse
impl UnsafeUnpin for EntityExtractionResponse
impl UnwindSafe for EntityExtractionResponse
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