pub struct Document {
pub id: String,
pub content: String,
pub embedding: Option<Vec<f32>>,
pub metadata: HashMap<String, MetadataValue>,
}
Expand description
Document representation with embedding support
Fields§
§id: String
Document ID
content: String
Document content/text
embedding: Option<Vec<f32>>
Vector embedding (optional)
metadata: HashMap<String, MetadataValue>
Document metadata
Implementations§
Source§impl Document
impl Document
Sourcepub fn new(id: impl Into<String>, content: impl Into<String>) -> Document
pub fn new(id: impl Into<String>, content: impl Into<String>) -> Document
Create a new document
Sourcepub fn with_content(content: impl Into<String>) -> Document
pub fn with_content(content: impl Into<String>) -> Document
Create a new document with auto-generated ID
Sourcepub fn with_embedding(self, embedding: Vec<f32>) -> Document
pub fn with_embedding(self, embedding: Vec<f32>) -> Document
Set the embedding
Sourcepub fn with_metadata(
self,
key: impl Into<String>,
value: impl Into<MetadataValue>,
) -> Document
pub fn with_metadata( self, key: impl Into<String>, value: impl Into<MetadataValue>, ) -> Document
Add metadata
Sourcepub fn with_all_metadata(
self,
metadata: HashMap<String, MetadataValue>,
) -> Document
pub fn with_all_metadata( self, metadata: HashMap<String, MetadataValue>, ) -> Document
Set all metadata
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Document
impl<'de> Deserialize<'de> for Document
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Document, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Document, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for Document
impl Serialize for Document
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for Document
impl RefUnwindSafe for Document
impl Send for Document
impl Sync for Document
impl Unpin for Document
impl UnwindSafe for Document
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more