pub enum EvalJsonlSource {
FileContent(EvalJsonlFileContentSource),
FileId(EvalJsonlFileIdSource),
}Expand description
JSONL source.
Variants§
FileContent(EvalJsonlFileContentSource)
File content source.
FileId(EvalJsonlFileIdSource)
File ID source.
Trait Implementations§
Source§impl Clone for EvalJsonlSource
impl Clone for EvalJsonlSource
Source§fn clone(&self) -> EvalJsonlSource
fn clone(&self) -> EvalJsonlSource
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 EvalJsonlSource
impl Debug for EvalJsonlSource
Source§impl<'de> Deserialize<'de> for EvalJsonlSource
impl<'de> Deserialize<'de> for EvalJsonlSource
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
Source§impl PartialEq for EvalJsonlSource
impl PartialEq for EvalJsonlSource
Source§impl Serialize for EvalJsonlSource
impl Serialize for EvalJsonlSource
impl StructuralPartialEq for EvalJsonlSource
Auto Trait Implementations§
impl Freeze for EvalJsonlSource
impl RefUnwindSafe for EvalJsonlSource
impl Send for EvalJsonlSource
impl Sync for EvalJsonlSource
impl Unpin for EvalJsonlSource
impl UnwindSafe for EvalJsonlSource
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