pub struct AnnotationItem {
pub id: String,
pub run_id: RunId,
pub prompt: String,
pub output: Value,
pub verdict: Verdict,
pub note: Option<String>,
pub created_at_ms: i64,
}Fields§
§id: String§run_id: RunId§prompt: String§output: Value§verdict: Verdict§note: Option<String>§created_at_ms: i64Trait Implementations§
Source§impl Clone for AnnotationItem
impl Clone for AnnotationItem
Source§fn clone(&self) -> AnnotationItem
fn clone(&self) -> AnnotationItem
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 AnnotationItem
impl Debug for AnnotationItem
Source§impl<'de> Deserialize<'de> for AnnotationItem
impl<'de> Deserialize<'de> for AnnotationItem
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 AnnotationItem
impl RefUnwindSafe for AnnotationItem
impl Send for AnnotationItem
impl Sync for AnnotationItem
impl Unpin for AnnotationItem
impl UnsafeUnpin for AnnotationItem
impl UnwindSafe for AnnotationItem
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