pub struct CodeExecutionOutput {
pub language: Option<String>,
pub code: String,
pub result: Option<String>,
pub outcome: Option<String>,
}Fields§
§language: Option<String>§code: String§result: Option<String>§outcome: Option<String>Trait Implementations§
Source§impl Clone for CodeExecutionOutput
impl Clone for CodeExecutionOutput
Source§fn clone(&self) -> CodeExecutionOutput
fn clone(&self) -> CodeExecutionOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CodeExecutionOutput
impl Debug for CodeExecutionOutput
Source§impl Default for CodeExecutionOutput
impl Default for CodeExecutionOutput
Source§fn default() -> CodeExecutionOutput
fn default() -> CodeExecutionOutput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CodeExecutionOutput
impl RefUnwindSafe for CodeExecutionOutput
impl Send for CodeExecutionOutput
impl Sync for CodeExecutionOutput
impl Unpin for CodeExecutionOutput
impl UnsafeUnpin for CodeExecutionOutput
impl UnwindSafe for CodeExecutionOutput
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