pub struct ExecuteReplyContent {
pub status: Status,
pub execution_count: i64,
pub payload: Option<Vec<HashMap<String, Value>>>,
pub user_expressions: Option<HashMap<String, Value>>,
pub ename: Option<String>,
pub evalue: Option<String>,
pub traceback: Option<Vec<String>>,
}
Expand description
Information from code execution.
Fields§
§status: Status
Status of the request.
execution_count: i64
Global execution count.
payload: Option<Vec<HashMap<String, Value>>>
List of payload dicts (deprecated).
user_expressions: Option<HashMap<String, Value>>
Results for the user expressions.
ename: Option<String>
Exception name as a string.
evalue: Option<String>
Exception value, as a string.
traceback: Option<Vec<String>>
Traceback frames as strings.
Trait Implementations§
Source§impl Debug for ExecuteReplyContent
impl Debug for ExecuteReplyContent
Source§impl<'de> Deserialize<'de> for ExecuteReplyContent
impl<'de> Deserialize<'de> for ExecuteReplyContent
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 ExecuteReplyContent
impl RefUnwindSafe for ExecuteReplyContent
impl Send for ExecuteReplyContent
impl Sync for ExecuteReplyContent
impl Unpin for ExecuteReplyContent
impl UnwindSafe for ExecuteReplyContent
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