jupyter_protocol/lib.rs
pub use jupyter_serde::*;
pub mod messaging;
pub use messaging::*;
pub mod connection_info;
pub use connection_info::ConnectionInfo;
mod time;
use async_trait::async_trait;
use futures::{Sink, Stream};
#[async_trait]
pub trait JupyterConnection:
Sink<JupyterMessage> + Stream<Item = Result<JupyterMessage, anyhow::Error>>
{
}