pub struct OutputLogs {
pub logs: String,
pub type_: String,
}Expand description
The logs output from the code interpreter.
Fields§
§logs: StringThe logs output from the code interpreter.
type_: StringThe type of the output. Always logs.
Trait Implementations§
Source§impl Clone for OutputLogs
impl Clone for OutputLogs
Source§fn clone(&self) -> OutputLogs
fn clone(&self) -> OutputLogs
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 OutputLogs
impl Debug for OutputLogs
Source§impl<'de> Deserialize<'de> for OutputLogs
impl<'de> Deserialize<'de> for OutputLogs
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 OutputLogs
impl RefUnwindSafe for OutputLogs
impl Send for OutputLogs
impl Sync for OutputLogs
impl Unpin for OutputLogs
impl UnsafeUnpin for OutputLogs
impl UnwindSafe for OutputLogs
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