pub enum Transcript {
Items(Vec<ChatItem>),
Text(String),
}Expand description
What to grade: the items a harness recorded, or text you rendered yourself.
Variants§
Trait Implementations§
Source§impl From<&[ChatItem]> for Transcript
impl From<&[ChatItem]> for Transcript
Source§impl From<&str> for Transcript
impl From<&str> for Transcript
Source§impl From<String> for Transcript
impl From<String> for Transcript
Auto Trait Implementations§
impl Freeze for Transcript
impl RefUnwindSafe for Transcript
impl Send for Transcript
impl Sync for Transcript
impl Unpin for Transcript
impl UnsafeUnpin for Transcript
impl UnwindSafe for Transcript
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