jupyter-protocol 1.1.1

Jupyter messaging structures and traits for jupyter clients and servers
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, thiserror::Error)]
pub enum JupyterError {
    #[error("Error deserializing content for msg_type `{msg_type}`: {source}")]
    ParseError {
        msg_type: String,
        #[source]
        source: serde_json::Error,
    },
    #[error("{0}")]
    SerdeError(#[from] serde_json::Error),
}