pub struct ExecutableCode {
pub language: CodeLanguage,
pub code: String,
}Expand description
Code generated by the model for execution.
Contains executable code that can be run to compute results as part of the generation process.
Fields§
§language: CodeLanguageProgramming language of the code.
code: StringThe source code to execute.
Trait Implementations§
Source§impl Clone for ExecutableCode
impl Clone for ExecutableCode
Source§fn clone(&self) -> ExecutableCode
fn clone(&self) -> ExecutableCode
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 ExecutableCode
impl Debug for ExecutableCode
Source§impl<'de> Deserialize<'de> for ExecutableCode
impl<'de> Deserialize<'de> for ExecutableCode
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 ExecutableCode
impl PartialEq for ExecutableCode
Source§impl Serialize for ExecutableCode
impl Serialize for ExecutableCode
impl StructuralPartialEq for ExecutableCode
Auto Trait Implementations§
impl Freeze for ExecutableCode
impl RefUnwindSafe for ExecutableCode
impl Send for ExecutableCode
impl Sync for ExecutableCode
impl Unpin for ExecutableCode
impl UnwindSafe for ExecutableCode
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