pub struct DisplayData {
pub data: Media,
pub metadata: Map<String, Value>,
pub transient: Transient,
}
Expand description
A 'display_data'
message on the 'iopub'
channel.
See Display Data.
§Example
The UI/client sends an 'execute_request'
message to the kernel.
ⓘ
use jupyter_protocol::messaging::{ExecuteReqeuest};
let execute_request = ExecuteRequest {
code: "print('Hello, World!')".to_string(),
silent: false,
store_history: true,
user_expressions: None,
allow_stdin: false,
stop_on_error: true,
};
connection.send(execute_request).await?;
As a side effect of execution, the kernel can send 'display_data'
messages to the UI/client.
ⓘ
use jupyter_protocol::media::{Media, MediaType, DisplayData};
let execute_request = shell.read().await?;
let raw = r#"{
"text/plain": "Hello, world!",
"text/html": "<h1>Hello, world!</h1>",
}"#;
let bundle: Media = serde_json::from_str(raw).unwrap();
let message = DisplayData{
data: bundle,
metadata: Default::default(),
transient: None,
}.as_child_of(execute_request);
iopub.send(message).await?;
Fields§
§data: Media
§metadata: Map<String, Value>
§transient: Transient
Implementations§
Source§impl DisplayData
impl DisplayData
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 DisplayData
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 = DisplayData{
// ...
}.as_child_of(&message);
connection.send(child_message).await?;
Trait Implementations§
Source§impl Clone for DisplayData
impl Clone for DisplayData
Source§fn clone(&self) -> DisplayData
fn clone(&self) -> DisplayData
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 DisplayData
impl Debug for DisplayData
Source§impl Default for DisplayData
impl Default for DisplayData
Source§fn default() -> DisplayData
fn default() -> DisplayData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DisplayData
impl<'de> Deserialize<'de> for DisplayData
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<DisplayData> for JupyterMessage
impl From<DisplayData> for JupyterMessage
Source§fn from(content: DisplayData) -> Self
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<DisplayData> for JupyterMessageContent
impl From<DisplayData> for JupyterMessageContent
Source§fn from(content: DisplayData) -> Self
fn from(content: DisplayData) -> Self
Create a new JupyterMessageContent
for a DisplayData
.
Source§impl From<MediaType> for DisplayData
impl From<MediaType> for DisplayData
Auto Trait Implementations§
impl Freeze for DisplayData
impl RefUnwindSafe for DisplayData
impl Send for DisplayData
impl Sync for DisplayData
impl Unpin for DisplayData
impl UnwindSafe for DisplayData
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