pub struct MockSummaryCall {
pub chunk_ids: Vec<String>,
pub kind_label: Option<String>,
pub note: Option<String>,
pub max_words: Option<u32>,
}Expand description
One recorded invocation of MockSummarizer::summarize.
Fields§
§chunk_ids: Vec<String>Snapshot of the chunk IDs received, in order.
kind_label: Option<String>Snapshot of the context received.
note: Option<String>Snapshot of any caller note.
max_words: Option<u32>Snapshot of the requested cap.
Trait Implementations§
Source§impl Clone for MockSummaryCall
impl Clone for MockSummaryCall
Source§fn clone(&self) -> MockSummaryCall
fn clone(&self) -> MockSummaryCall
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Freeze for MockSummaryCall
impl RefUnwindSafe for MockSummaryCall
impl Send for MockSummaryCall
impl Sync for MockSummaryCall
impl Unpin for MockSummaryCall
impl UnsafeUnpin for MockSummaryCall
impl UnwindSafe for MockSummaryCall
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