pub struct Node {
pub path: PathBuf,
pub chunk: String,
pub vectors: Option<HashMap<EmbeddedField, Embedding>>,
pub sparse_vectors: Option<HashMap<EmbeddedField, SparseEmbedding>>,
pub metadata: Metadata,
pub embed_mode: EmbedMode,
pub original_size: usize,
pub offset: usize,
}
Expand description
Represents a unit of data in the indexing process.
Node
encapsulates all necessary information for a single unit of data being processed
in the indexing pipeline. It includes fields for an identifier, file path, data chunk, optional
vector representation, and metadata.
Fields§
§path: PathBuf
File path associated with the node.
chunk: String
Data chunk contained in the node.
vectors: Option<HashMap<EmbeddedField, Embedding>>
Optional vector representation of embedded data.
sparse_vectors: Option<HashMap<EmbeddedField, SparseEmbedding>>
Optional sparse vector representation of embedded data.
metadata: Metadata
Metadata associated with the node.
embed_mode: EmbedMode
Mode of embedding data Chunk and Metadata
original_size: usize
Size of the input this node was originally derived from in bytes
offset: usize
Offset of the chunk relative to the start of the input this node was originally derived from in bytes
Implementations§
Source§impl Node
impl Node
Sourcepub fn build_from_other(node: &Node) -> NodeBuilder
pub fn build_from_other(node: &Node) -> NodeBuilder
Builds a new instance of Node
, returning a NodeBuilder
. Copies
over the fields from the provided Node
.
Sourcepub fn builder() -> NodeBuilder
pub fn builder() -> NodeBuilder
Creates a new instance of NodeBuilder.
Sourcepub fn new(chunk: impl Into<String>) -> Node
pub fn new(chunk: impl Into<String>) -> Node
Creates a new instance of Node
with the specified data chunk.
The other fields are set to their default values.
pub fn with_metadata(&mut self, metadata: impl Into<Metadata>) -> &mut Self
pub fn with_vectors( &mut self, vectors: impl Into<HashMap<EmbeddedField, Embedding>>, ) -> &mut Self
pub fn with_sparse_vectors( &mut self, sparse_vectors: impl Into<HashMap<EmbeddedField, SparseEmbedding>>, ) -> &mut Self
Sourcepub fn as_embeddables(&self) -> Vec<(EmbeddedField, String)>
pub fn as_embeddables(&self) -> Vec<(EmbeddedField, String)>
Creates embeddable data depending on chosen EmbedMode
.
§Returns
Embeddable data mapped to their EmbeddedField
.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Node
impl<'de> Deserialize<'de> for Node
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>,
Source§impl Hash for Node
impl Hash for Node
impl StructuralPartialEq for Node
Auto Trait Implementations§
impl Freeze for Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnwindSafe for Node
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
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>
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>
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