pub struct MemoryRetrievalBundle<T> {
pub fragments_input: Node<Vec<MemoryFragment<T>>>,
pub query_input: Node<MemoryRetrievalQuery>,
pub snapshot: Node<MemoryRetrievalSnapshot<T>>,
pub fragments: Node<Vec<MemoryFragment<T>>>,
pub indexed: Node<MemoryRetrievalIndex<T>>,
pub ranked: Node<MemoryAnswer<T>>,
pub status: Node<MemoryRetrievalStatus>,
pub errors: Node<Vec<MemoryRetrievalError>>,
pub cursor: Node<MemoryRetrievalCursor>,
}Expand description
MemoryRetrievalBundle data container.
Fields§
§fragments_input: Node<Vec<MemoryFragment<T>>>fragments_input field for fragments input.
query_input: Node<MemoryRetrievalQuery>query_input field for query input.
snapshot: Node<MemoryRetrievalSnapshot<T>>snapshot field for snapshot.
fragments: Node<Vec<MemoryFragment<T>>>fragments field for fragments.
indexed: Node<MemoryRetrievalIndex<T>>indexed field for indexed.
ranked: Node<MemoryAnswer<T>>ranked field for ranked.
status: Node<MemoryRetrievalStatus>status field for status.
errors: Node<Vec<MemoryRetrievalError>>errors field for errors.
cursor: Node<MemoryRetrievalCursor>cursor field for cursor.
Trait Implementations§
Source§impl<T: Clone> Clone for MemoryRetrievalBundle<T>
impl<T: Clone> Clone for MemoryRetrievalBundle<T>
Source§fn clone(&self) -> MemoryRetrievalBundle<T>
fn clone(&self) -> MemoryRetrievalBundle<T>
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 moreAuto Trait Implementations§
impl<T> Freeze for MemoryRetrievalBundle<T>
impl<T> !RefUnwindSafe for MemoryRetrievalBundle<T>
impl<T> !Send for MemoryRetrievalBundle<T>
impl<T> !Sync for MemoryRetrievalBundle<T>
impl<T> Unpin for MemoryRetrievalBundle<T>where
T: Unpin,
impl<T> UnsafeUnpin for MemoryRetrievalBundle<T>
impl<T> !UnwindSafe for MemoryRetrievalBundle<T>
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