pub struct KernelInfoReply {
pub status: ReplyStatus,
pub protocol_version: String,
pub implementation: String,
pub implementation_version: String,
pub language_info: LanguageInfo,
pub banner: String,
pub help_links: Vec<HelpLink>,
pub debugger: bool,
pub error: Option<Box<ReplyError>>,
}
Expand description
A reply containing information about the kernel.
See https://jupyter-client.readthedocs.io/en/latest/messaging.html#kernel-info
Fields§
§status: ReplyStatus
§protocol_version: String
§implementation: String
§implementation_version: String
§language_info: LanguageInfo
§help_links: Vec<HelpLink>
§debugger: bool
§error: Option<Box<ReplyError>>
Implementations§
Source§impl KernelInfoReply
impl KernelInfoReply
pub fn as_child_of(&self, parent: &JupyterMessage) -> JupyterMessage
Trait Implementations§
Source§impl Clone for KernelInfoReply
impl Clone for KernelInfoReply
Source§fn clone(&self) -> KernelInfoReply
fn clone(&self) -> KernelInfoReply
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 KernelInfoReply
impl Debug for KernelInfoReply
Source§impl<'de> Deserialize<'de> for KernelInfoReply
impl<'de> Deserialize<'de> for KernelInfoReply
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<KernelInfoReply, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<KernelInfoReply, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<KernelInfoReply> for JupyterMessage
impl From<KernelInfoReply> for JupyterMessage
Source§fn from(content: KernelInfoReply) -> JupyterMessage
fn from(content: KernelInfoReply) -> JupyterMessage
Converts to this type from the input type.
Source§impl From<KernelInfoReply> for JupyterMessageContent
impl From<KernelInfoReply> for JupyterMessageContent
Source§fn from(content: KernelInfoReply) -> JupyterMessageContent
fn from(content: KernelInfoReply) -> JupyterMessageContent
Converts to this type from the input type.
Source§impl Serialize for KernelInfoReply
impl Serialize for KernelInfoReply
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for KernelInfoReply
impl RefUnwindSafe for KernelInfoReply
impl Send for KernelInfoReply
impl Sync for KernelInfoReply
impl Unpin for KernelInfoReply
impl UnwindSafe for KernelInfoReply
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