pub struct ExecuteReply {
pub status: ReplyStatus,
pub execution_count: ExecutionCount,
pub payload: Vec<Payload>,
pub user_expressions: Option<HashMap<String, String>>,
pub error: Option<Box<ReplyError>>,
}
Fields§
§status: ReplyStatus
§execution_count: ExecutionCount
§payload: Vec<Payload>
§user_expressions: Option<HashMap<String, String>>
§error: Option<Box<ReplyError>>
Implementations§
Source§impl ExecuteReply
impl ExecuteReply
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 ExecuteReply
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 = ExecuteReply{
// ...
}.as_child_of(&message);
connection.send(child_message).await?;
Trait Implementations§
Source§impl Clone for ExecuteReply
impl Clone for ExecuteReply
Source§fn clone(&self) -> ExecuteReply
fn clone(&self) -> ExecuteReply
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 ExecuteReply
impl Debug for ExecuteReply
Source§impl<'de> Deserialize<'de> for ExecuteReply
impl<'de> Deserialize<'de> for ExecuteReply
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<ExecuteReply> for JupyterMessage
impl From<ExecuteReply> for JupyterMessage
Source§fn from(content: ExecuteReply) -> Self
fn from(content: ExecuteReply) -> Self
Create a new JupyterMessage
for a ExecuteReply
.
⚠️ 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<ExecuteReply> for JupyterMessageContent
impl From<ExecuteReply> for JupyterMessageContent
Source§fn from(content: ExecuteReply) -> Self
fn from(content: ExecuteReply) -> Self
Create a new JupyterMessageContent
for a ExecuteReply
.
Auto Trait Implementations§
impl Freeze for ExecuteReply
impl RefUnwindSafe for ExecuteReply
impl Send for ExecuteReply
impl Sync for ExecuteReply
impl Unpin for ExecuteReply
impl UnwindSafe for ExecuteReply
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