pub struct ExecuteInputContent {
pub code: String,
pub execution_count: i64,
}
Expand description
Response when code is input to the kernel.
Fields§
§code: String
The code that was run.
execution_count: i64
Counter for the execution number.
Trait Implementations§
Source§impl Debug for ExecuteInputContent
impl Debug for ExecuteInputContent
Source§impl<'de> Deserialize<'de> for ExecuteInputContent
impl<'de> Deserialize<'de> for ExecuteInputContent
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 ExecuteInputContent
impl RefUnwindSafe for ExecuteInputContent
impl Send for ExecuteInputContent
impl Sync for ExecuteInputContent
impl Unpin for ExecuteInputContent
impl UnwindSafe for ExecuteInputContent
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