pub struct CollectionEntries<'a> {
pub ids: Vec<&'a str>,
pub metadatas: Option<Vec<Map<String, Value>>>,
pub documents: Option<Vec<&'a str>>,
pub embeddings: Option<Vec<Vec<f32>>>,
}Fields§
§ids: Vec<&'a str>§metadatas: Option<Vec<Map<String, Value>>>§documents: Option<Vec<&'a str>>§embeddings: Option<Vec<Vec<f32>>>Trait Implementations§
Source§impl<'a> Debug for CollectionEntries<'a>
impl<'a> Debug for CollectionEntries<'a>
Source§impl<'a> Default for CollectionEntries<'a>
impl<'a> Default for CollectionEntries<'a>
Source§fn default() -> CollectionEntries<'a>
fn default() -> CollectionEntries<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for CollectionEntries<'a>
impl<'a> RefUnwindSafe for CollectionEntries<'a>
impl<'a> Send for CollectionEntries<'a>
impl<'a> Sync for CollectionEntries<'a>
impl<'a> Unpin for CollectionEntries<'a>
impl<'a> UnwindSafe for CollectionEntries<'a>
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