pub struct CodeInterpreterCall {
pub code: String,
pub id: String,
pub results: Vec<CodeInterpreterCallOutput>,
pub status: String,
pub container_id: Option<String>,
}Fields§
§code: String§id: String§results: Vec<CodeInterpreterCallOutput>§status: String§container_id: Option<String>Trait Implementations§
Source§impl Clone for CodeInterpreterCall
impl Clone for CodeInterpreterCall
Source§fn clone(&self) -> CodeInterpreterCall
fn clone(&self) -> CodeInterpreterCall
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 CodeInterpreterCall
impl Debug for CodeInterpreterCall
Source§impl<'de> Deserialize<'de> for CodeInterpreterCall
impl<'de> Deserialize<'de> for CodeInterpreterCall
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 CodeInterpreterCall
impl RefUnwindSafe for CodeInterpreterCall
impl Send for CodeInterpreterCall
impl Sync for CodeInterpreterCall
impl Unpin for CodeInterpreterCall
impl UnsafeUnpin for CodeInterpreterCall
impl UnwindSafe for CodeInterpreterCall
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