jupyter_protocol::messaging

Struct JupyterMessage

Source
pub struct JupyterMessage {
    pub zmq_identities: Vec<Bytes>,
    pub header: Header,
    pub parent_header: Option<Header>,
    pub metadata: Value,
    pub content: JupyterMessageContent,
    pub buffers: Vec<Bytes>,
    pub channel: Option<Channel>,
}

Fields§

§zmq_identities: Vec<Bytes>§header: Header§parent_header: Option<Header>§metadata: Value§content: JupyterMessageContent§buffers: Vec<Bytes>§channel: Option<Channel>

Implementations§

Source§

impl JupyterMessage

Source

pub fn new( content: impl Into<JupyterMessageContent>, parent: Option<&JupyterMessage>, ) -> JupyterMessage

Source

pub fn with_metadata(self, metadata: Value) -> Self

Source

pub fn with_buffers(self, buffers: Vec<Bytes>) -> Self

Source

pub fn with_parent(self, parent: &JupyterMessage) -> Self

Source

pub fn with_zmq_identities(self, zmq_identities: Vec<Bytes>) -> Self

Source

pub fn with_session(self, session: &str) -> Self

Source

pub fn message_type(&self) -> &str

Source

pub fn from_value(message: Value) -> Result<JupyterMessage, Error>

Trait Implementations§

Source§

impl Clone for JupyterMessage

Source§

fn clone(&self) -> JupyterMessage

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for JupyterMessage

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for JupyterMessage

Source§

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<ClearOutput> for JupyterMessage

Source§

fn from(content: ClearOutput) -> Self

Create a new JupyterMessage for a ClearOutput.

⚠️ 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<CommClose> for JupyterMessage

Source§

fn from(content: CommClose) -> Self

Create a new JupyterMessage for a CommClose.

⚠️ 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<CommInfoReply> for JupyterMessage

Source§

fn from(content: CommInfoReply) -> Self

Create a new JupyterMessage for a CommInfoReply.

⚠️ 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<CommInfoRequest> for JupyterMessage

Source§

fn from(content: CommInfoRequest) -> Self

Create a new JupyterMessage for a CommInfoRequest.

⚠️ 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<CommMsg> for JupyterMessage

Source§

fn from(content: CommMsg) -> Self

Create a new JupyterMessage for a CommMsg.

⚠️ 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<CommOpen> for JupyterMessage

Source§

fn from(content: CommOpen) -> Self

Create a new JupyterMessage for a CommOpen.

⚠️ 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<CompleteReply> for JupyterMessage

Source§

fn from(content: CompleteReply) -> Self

Create a new JupyterMessage for a CompleteReply.

⚠️ 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<CompleteRequest> for JupyterMessage

Source§

fn from(content: CompleteRequest) -> Self

Create a new JupyterMessage for a CompleteRequest.

⚠️ 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<DebugReply> for JupyterMessage

Source§

fn from(content: DebugReply) -> Self

Create a new JupyterMessage for a DebugReply.

⚠️ 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<DebugRequest> for JupyterMessage

Source§

fn from(content: DebugRequest) -> Self

Create a new JupyterMessage for a DebugRequest.

⚠️ 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<DisplayData> for JupyterMessage

Source§

fn from(content: DisplayData) -> Self

Create a new JupyterMessage for a DisplayData.

⚠️ 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 JupyterMessage

Source§

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<ExecuteInput> for JupyterMessage

Source§

fn from(content: ExecuteInput) -> Self

Create a new JupyterMessage for a ExecuteInput.

⚠️ 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 JupyterMessage

Source§

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<ExecuteRequest> for JupyterMessage

Source§

fn from(content: ExecuteRequest) -> Self

Create a new JupyterMessage for a ExecuteRequest.

⚠️ 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<ExecuteResult> for JupyterMessage

Source§

fn from(content: ExecuteResult) -> Self

Create a new JupyterMessage for a ExecuteResult.

⚠️ 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<HistoryReply> for JupyterMessage

Source§

fn from(content: HistoryReply) -> Self

Create a new JupyterMessage for a HistoryReply.

⚠️ 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<HistoryRequest> for JupyterMessage

Source§

fn from(content: HistoryRequest) -> Self

Create a new JupyterMessage for a HistoryRequest.

⚠️ 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<InputReply> for JupyterMessage

Source§

fn from(content: InputReply) -> Self

Create a new JupyterMessage for a InputReply.

⚠️ 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<InputRequest> for JupyterMessage

Source§

fn from(content: InputRequest) -> Self

Create a new JupyterMessage for a InputRequest.

⚠️ 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<InspectReply> for JupyterMessage

Source§

fn from(content: InspectReply) -> Self

Create a new JupyterMessage for a InspectReply.

⚠️ 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<InspectRequest> for JupyterMessage

Source§

fn from(content: InspectRequest) -> Self

Create a new JupyterMessage for a InspectRequest.

⚠️ 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<InterruptReply> for JupyterMessage

Source§

fn from(content: InterruptReply) -> Self

Create a new JupyterMessage for a InterruptReply.

⚠️ 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<InterruptRequest> for JupyterMessage

Source§

fn from(content: InterruptRequest) -> Self

Create a new JupyterMessage for a InterruptRequest.

⚠️ 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<IsCompleteReply> for JupyterMessage

Source§

fn from(content: IsCompleteReply) -> Self

Create a new JupyterMessage for a IsCompleteReply.

⚠️ 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<IsCompleteRequest> for JupyterMessage

Source§

fn from(content: IsCompleteRequest) -> Self

Create a new JupyterMessage for a IsCompleteRequest.

⚠️ 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<JupyterMessageContent> for JupyterMessage

Source§

fn from(content: JupyterMessageContent) -> Self

Converts to this type from the input type.
Source§

impl From<KernelInfoReply> for JupyterMessage

Source§

fn from(content: KernelInfoReply) -> Self

Converts to this type from the input type.
Source§

impl From<KernelInfoRequest> for JupyterMessage

Source§

fn from(content: KernelInfoRequest) -> Self

Create a new JupyterMessage for a KernelInfoRequest.

⚠️ 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<ShutdownReply> for JupyterMessage

Source§

fn from(content: ShutdownReply) -> Self

Create a new JupyterMessage for a ShutdownReply.

⚠️ 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<ShutdownRequest> for JupyterMessage

Source§

fn from(content: ShutdownRequest) -> Self

Create a new JupyterMessage for a ShutdownRequest.

⚠️ 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<Status> for JupyterMessage

Source§

fn from(content: Status) -> Self

Create a new JupyterMessage for a Status.

⚠️ 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<StreamContent> for JupyterMessage

Source§

fn from(content: StreamContent) -> Self

Create a new JupyterMessage for a StreamContent.

⚠️ 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<UnknownMessage> for JupyterMessage

Source§

fn from(content: UnknownMessage) -> Self

Create a new JupyterMessage for a UnknownMessage.

⚠️ 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<UpdateDisplayData> for JupyterMessage

Source§

fn from(content: UpdateDisplayData) -> Self

Create a new JupyterMessage for a UpdateDisplayData.

⚠️ 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 Serialize for JupyterMessage

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,