[][execute_evcxr
]
[][execute_evcxr
]
evcxr
]-flavored RustFurther [evcxr
] can refer to the evaluation context,
to Jupyter kernel for Rust programming language, or to its supported script-like syntax.
evcxr
]-flavored Rust```rust,norun :dep image = "0.23" :dep evcxrimage = "1.1" // In a pure Rust project, the dependencies above would be specified in Cargo.toml use evcxr_image::ImageDisplay;
image::ImageBuffer::from_fn(256, 256, |x, y| { if (x as i32 - y as i32).abs() < 3 { image::Rgb([0, 0, 255]) } else { image::Rgb([0, 0, 0]) } }) ```
At the moment of writing, the original [evcxr
kernel] supports a lot but not all 1 features of Rust. This crate has been born as a temporary solution to the problem.
evcxr
]-flavored RustThe syntax supported by [evcxr
kernel], as opposed to pure Rust, is implementation-defined. As a result, the same [evcxr
]-flavored script can be executed differently by [execute_evcxr
] and [evcxr
] itself. In case of discrepancies, the behavior of [evcxr
] is considered correct and the deviation on the side of [execute_evcxr
] must be treated a bug, unless stated otherwise.
As its name suggests, [execute_evcxr
] is not an evaluation context in contrast to [evcxr
]. It does not "return" a value. It executes a given script supplied in the form of string instead of attempting to evaluate it, unlike [evcxr
].
[execute_evcxr
] gets its job done by parsing the supplied script only. It does not analyze the source code of the crates-dependencies. This fact will become important further in the text.
Because [execute_evcxr
] is a temporary solution, it does not try to memoize which macros were defined in the script and to which kinds of syntactic entities it would expand. This fact will become important further in the text.
[execute_evcxr
] works by parsing [evcxr
]-flavored Rust, building a binary crate from it in the temporary dir, executing the binary crate, and cleaning up. Therefore, it must know which syntactic entities (or, more precisely, "statements") should go inside the main()
function. This fact will become important further in the text.
Due to the last three limitations above, the developer might need to annotate every macro invocation that eventually expands to "items" using #[expands_only_to_items]
attribute. Otherwise, they will be placed inside main function. Luckily, the most common macros do not require the attribute and in many cases even if the macros do expands to "items" in the main()
, the binary crate can still work as expected.
This is a README for library users. There's a separate DEV-README.md with information that can be relevant only to library developers.