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