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>>,
}
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<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<KernelInfoReply> for JupyterMessage
impl From<KernelInfoReply> for JupyterMessage
Source§fn from(content: KernelInfoReply) -> Self
fn from(content: KernelInfoReply) -> Self
Converts to this type from the input type.
Source§impl From<KernelInfoReply> for JupyterMessageContent
impl From<KernelInfoReply> for JupyterMessageContent
Source§fn from(content: KernelInfoReply) -> Self
fn from(content: KernelInfoReply) -> Self
Converts to this type from the input type.
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