pub struct UnparsedEntry {
pub request_id: String,
pub messages: Vec<Message>,
pub max_output_tokens: Option<u32>,
}Expand description
Unparsed entry from dataset (before tokenization)
Fields§
§request_id: String§messages: Vec<Message>§max_output_tokens: Option<u32>Trait Implementations§
Source§impl Clone for UnparsedEntry
impl Clone for UnparsedEntry
Source§fn clone(&self) -> UnparsedEntry
fn clone(&self) -> UnparsedEntry
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 moreAuto Trait Implementations§
impl Freeze for UnparsedEntry
impl RefUnwindSafe for UnparsedEntry
impl Send for UnparsedEntry
impl Sync for UnparsedEntry
impl Unpin for UnparsedEntry
impl UnsafeUnpin for UnparsedEntry
impl UnwindSafe for UnparsedEntry
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