pub struct StopReport {
pub distill: DistillReport,
pub knowledge_pages_created: usize,
pub knowledge_page_ids: Vec<String>,
}Fields§
§distill: DistillReport§knowledge_pages_created: usizeNumber of knowledge pages auto-created during silent distillation.
knowledge_page_ids: Vec<String>Record IDs of knowledge page candidates created.
Implementations§
Source§impl StopReport
impl StopReport
pub fn transcript_path(&self) -> Option<&Path>
pub fn signals_persisted(&self) -> &[String]
pub fn candidates_persisted(&self) -> &[String]
Trait Implementations§
Source§impl Clone for StopReport
impl Clone for StopReport
Source§fn clone(&self) -> StopReport
fn clone(&self) -> StopReport
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 moreSource§impl Debug for StopReport
impl Debug for StopReport
Source§impl Default for StopReport
impl Default for StopReport
Source§fn default() -> StopReport
fn default() -> StopReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StopReport
impl RefUnwindSafe for StopReport
impl Send for StopReport
impl Sync for StopReport
impl Unpin for StopReport
impl UnsafeUnpin for StopReport
impl UnwindSafe for StopReport
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