pub struct JudgePreview {Show 15 fields
pub id: Uuid,
pub created_at: String,
pub updated_at: String,
pub deleted_at: Option<String>,
pub owner_id: Uuid,
pub workspace_id: Uuid,
pub name: String,
pub description: String,
pub model_name: String,
pub output: Box<Output>,
pub instructions: String,
pub tools: Vec<String>,
pub up_revision: Option<Option<Uuid>>,
pub down_revision: Option<Option<Uuid>>,
pub base_revision: Option<Option<Uuid>>,
}Fields§
§id: Uuid§created_at: String§updated_at: String§deleted_at: Option<String>§owner_id: Uuid§workspace_id: Uuid§name: String§description: String§model_name: String§output: Box<Output>§instructions: String§tools: Vec<String>§up_revision: Option<Option<Uuid>>§down_revision: Option<Option<Uuid>>§base_revision: Option<Option<Uuid>>Implementations§
Trait Implementations§
Source§impl Clone for JudgePreview
impl Clone for JudgePreview
Source§fn clone(&self) -> JudgePreview
fn clone(&self) -> JudgePreview
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 JudgePreview
impl Debug for JudgePreview
Source§impl Default for JudgePreview
impl Default for JudgePreview
Source§fn default() -> JudgePreview
fn default() -> JudgePreview
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JudgePreview
impl<'de> Deserialize<'de> for JudgePreview
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 JudgePreview
impl PartialEq for JudgePreview
Source§impl Serialize for JudgePreview
impl Serialize for JudgePreview
impl StructuralPartialEq for JudgePreview
Auto Trait Implementations§
impl Freeze for JudgePreview
impl RefUnwindSafe for JudgePreview
impl Send for JudgePreview
impl Sync for JudgePreview
impl Unpin for JudgePreview
impl UnsafeUnpin for JudgePreview
impl UnwindSafe for JudgePreview
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