pub struct RecallTrace {
pub corpus_fingerprint: String,
pub candidate_ids: Vec<String>,
pub candidate_scores: Vec<f32>,
pub injected_count: usize,
}Expand description
Recall trace for local runs.
Fields§
§corpus_fingerprint: String§candidate_ids: Vec<String>§candidate_scores: Vec<f32>§injected_count: usizeTrait Implementations§
Source§impl Clone for RecallTrace
impl Clone for RecallTrace
Source§fn clone(&self) -> RecallTrace
fn clone(&self) -> RecallTrace
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 moreSource§impl Debug for RecallTrace
impl Debug for RecallTrace
Source§impl<'de> Deserialize<'de> for RecallTrace
impl<'de> Deserialize<'de> for RecallTrace
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>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RecallTrace
impl RefUnwindSafe for RecallTrace
impl Send for RecallTrace
impl Sync for RecallTrace
impl Unpin for RecallTrace
impl UnwindSafe for RecallTrace
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