evcxr_runtime

Crates.ioevcxr_runtime
lib.rsevcxr_runtime
version1.1.0
sourcesrc
created_at2018-09-25 10:51:38.833117
updated_at2020-12-25 01:14:52.80048
descriptionRuntime core for the evcxr crate
homepage
repositoryhttps://github.com/google/evcxr
max_upload_size
id86460
size15,779
David Lattimore (davidlattimore)

documentation

README

Evcxr Runtime

Latest Version

Provides functionality that may be of use by code running inside Evcxr. In particular inside the Evcxr Jupyter kernel.

At the moment, all that's provided is functions and traits for emitting mime-typed data to Evcxr.

impl evcxr_runtime::Display for MyType {
    fn evcxr_display(&self) {
        evcxr_runtime::mime_type("text/html")
            .text("<span style=\"color: red\">>Hello world</span>");
    }
}
Commit count: 614

cargo fmt