pub struct MemoryRetrievalBundleOptions<T> {
pub name: Option<String>,
pub fragments: Node<Vec<MemoryFragment<T>>>,
pub query: Node<MemoryRetrievalQuery>,
}Expand description
MemoryRetrievalBundleOptions data container.
Fields§
§name: Option<String>name field for name.
fragments: Node<Vec<MemoryFragment<T>>>fragments field for fragments.
query: Node<MemoryRetrievalQuery>query field for query.
Implementations§
Source§impl<T> MemoryRetrievalBundleOptions<T>
impl<T> MemoryRetrievalBundleOptions<T>
Trait Implementations§
Source§impl<T: Clone> Clone for MemoryRetrievalBundleOptions<T>
impl<T: Clone> Clone for MemoryRetrievalBundleOptions<T>
Source§fn clone(&self) -> MemoryRetrievalBundleOptions<T>
fn clone(&self) -> MemoryRetrievalBundleOptions<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 MemoryRetrievalBundleOptions<T>
impl<T> !RefUnwindSafe for MemoryRetrievalBundleOptions<T>
impl<T> !Send for MemoryRetrievalBundleOptions<T>
impl<T> !Sync for MemoryRetrievalBundleOptions<T>
impl<T> Unpin for MemoryRetrievalBundleOptions<T>where
T: Unpin,
impl<T> UnsafeUnpin for MemoryRetrievalBundleOptions<T>
impl<T> !UnwindSafe for MemoryRetrievalBundleOptions<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