pub struct ErrorOutput {
pub ename: String,
pub evalue: String,
pub traceback: Vec<String>,
}
Expand description
An 'error'
message on the 'iopub'
channel.
See Error.
These are errors that occur during execution from user code. Syntax errors, runtime errors, etc.
Fields§
§ename: String
§evalue: String
§traceback: Vec<String>
Implementations§
Source§impl ErrorOutput
impl ErrorOutput
Sourcepub fn as_child_of(&self, parent: &JupyterMessage) -> JupyterMessage
pub fn as_child_of(&self, parent: &JupyterMessage) -> JupyterMessage
Create a new JupyterMessage
, assigning the parent for a ErrorOutput
message.
This method creates a new JupyterMessage
with the right content, parent header, and zmq identities, making
it suitable for sending over ZeroMQ.
§Example
ⓘ
use jupyter_protocol::messaging::{JupyterMessage, JupyterMessageContent};
let message = connection.recv().await?;
let child_message = ErrorOutput{
// ...
}.as_child_of(&message);
connection.send(child_message).await?;
Trait Implementations§
Source§impl Clone for ErrorOutput
impl Clone for ErrorOutput
Source§fn clone(&self) -> ErrorOutput
fn clone(&self) -> ErrorOutput
Returns a copy of the value. Read more
1.0.0 · 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 ErrorOutput
impl Debug for ErrorOutput
Source§impl<'de> Deserialize<'de> for ErrorOutput
impl<'de> Deserialize<'de> for ErrorOutput
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
Source§impl From<ErrorOutput> for JupyterMessage
impl From<ErrorOutput> for JupyterMessage
Source§fn from(content: ErrorOutput) -> Self
fn from(content: ErrorOutput) -> Self
Create a new JupyterMessage
for a ErrorOutput
.
⚠️ If you use this method, you must set the zmq identities yourself. If you have a message that
“caused” your message to be sent, use that message with as_child_of
instead.
Source§impl From<ErrorOutput> for JupyterMessageContent
impl From<ErrorOutput> for JupyterMessageContent
Source§fn from(content: ErrorOutput) -> Self
fn from(content: ErrorOutput) -> Self
Create a new JupyterMessageContent
for a ErrorOutput
.
Auto Trait Implementations§
impl Freeze for ErrorOutput
impl RefUnwindSafe for ErrorOutput
impl Send for ErrorOutput
impl Sync for ErrorOutput
impl Unpin for ErrorOutput
impl UnwindSafe for ErrorOutput
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