pub struct EncryptedCodeExecutionResultBlock {
pub content: Vec<CodeExecutionOutputBlock>,
pub encrypted_stdout: String,
pub return_code: i64,
pub stderr: String,
pub type_: EncryptedCodeExecutionResultBlockType,
pub extra: JsonObject,
}Fields§
§content: Vec<CodeExecutionOutputBlock>§encrypted_stdout: String§return_code: i64§stderr: String§type_: EncryptedCodeExecutionResultBlockType§extra: JsonObjectTrait Implementations§
Source§impl Clone for EncryptedCodeExecutionResultBlock
impl Clone for EncryptedCodeExecutionResultBlock
Source§fn clone(&self) -> EncryptedCodeExecutionResultBlock
fn clone(&self) -> EncryptedCodeExecutionResultBlock
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<'de> Deserialize<'de> for EncryptedCodeExecutionResultBlock
impl<'de> Deserialize<'de> for EncryptedCodeExecutionResultBlock
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
impl StructuralPartialEq for EncryptedCodeExecutionResultBlock
Auto Trait Implementations§
impl Freeze for EncryptedCodeExecutionResultBlock
impl RefUnwindSafe for EncryptedCodeExecutionResultBlock
impl Send for EncryptedCodeExecutionResultBlock
impl Sync for EncryptedCodeExecutionResultBlock
impl Unpin for EncryptedCodeExecutionResultBlock
impl UnsafeUnpin for EncryptedCodeExecutionResultBlock
impl UnwindSafe for EncryptedCodeExecutionResultBlock
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