pub struct MetaPayload {
pub schema_version: SchemaVersion,
pub harness_version: String,
pub task_snapshot: Task,
pub llm_capabilities: LlmCapabilities,
}Fields§
§schema_version: SchemaVersion§harness_version: String§task_snapshot: Task§llm_capabilities: LlmCapabilitiesTrait Implementations§
Source§impl Clone for MetaPayload
impl Clone for MetaPayload
Source§fn clone(&self) -> MetaPayload
fn clone(&self) -> MetaPayload
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 MetaPayload
impl Debug for MetaPayload
Source§impl<'de> Deserialize<'de> for MetaPayload
impl<'de> Deserialize<'de> for MetaPayload
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
Auto Trait Implementations§
impl Freeze for MetaPayload
impl RefUnwindSafe for MetaPayload
impl Send for MetaPayload
impl Sync for MetaPayload
impl Unpin for MetaPayload
impl UnsafeUnpin for MetaPayload
impl UnwindSafe for MetaPayload
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