rust_source | R Documentation |
rust_source()
compiles and loads a single Rust file for use in R. rust_function()
compiles and loads a single Rust function for use in R.
rust_source(
file,
code = NULL,
module_name = "rextendr",
dependencies = NULL,
patch.crates_io = getOption("rextendr.patch.crates_io"),
profile = c("dev", "release", "perf"),
toolchain = getOption("rextendr.toolchain"),
extendr_deps = NULL,
features = NULL,
env = parent.frame(),
use_extendr_api = TRUE,
generate_module_macro = TRUE,
cache_build = TRUE,
quiet = FALSE,
use_rtools = TRUE,
use_dev_extendr = FALSE
)
rust_function(
code,
extendr_fn_options = NULL,
env = parent.frame(),
quiet = FALSE,
use_dev_extendr = FALSE,
...
)
file |
Input rust file to source. |
code |
Input rust code, to be used instead of |
module_name |
Name of the module defined in the Rust source via
|
dependencies |
Character vector of dependencies lines to be added to the
|
patch.crates_io |
Character vector of patch statements for crates.io to
be added to the |
profile |
Rust profile. Can be either |
toolchain |
Rust toolchain. The default, |
extendr_deps |
Versions of |
features |
A vector of |
env |
The R environment in which the wrapping functions will be defined. |
use_extendr_api |
Logical indicating whether
|
generate_module_macro |
Logical indicating whether the Rust module
macro should be automatically generated from the code. Default is |
cache_build |
Logical indicating whether builds should be cached between
calls to |
quiet |
Logical indicating whether compile output should be generated or not. |
use_rtools |
Logical indicating whether to append the path to Rtools
to the |
use_dev_extendr |
Logical indicating whether to use development version of
|
extendr_fn_options |
A list of extendr function options that are inserted into
|
... |
Other parameters handed off to |
The result from dyn.load()
, which is an object of class DLLInfo
.
See getLoadedDLLs()
for more details.
## Not run:
# creating a single rust function
rust_function("fn add(a:f64, b:f64) -> f64 { a + b }")
add(2.5, 4.7)
# creating multiple rust functions at once
code <- r"(
#[extendr]
fn hello() -> &'static str {
"Hello, world!"
}
#[extendr]
fn test( a: &str, b: i64) {
rprintln!("Data sent to Rust: {}, {}", a, b);
}
)"
rust_source(code = code)
hello()
test("a string", 42)
# use case with an external dependency: a function that converts
# markdown text to html, using the `pulldown_cmark` crate.
code <- r"(
use pulldown_cmark::{Parser, Options, html};
#[extendr]
fn md_to_html(input: &str) -> String {
let mut options = Options::empty();
options.insert(Options::ENABLE_TABLES);
let parser = Parser::new_ext(input, options);
let mut output = String::new();
html::push_html(&mut output, parser);
output
}
)"
rust_source(
code = code,
dependencies = list(`pulldown-cmark` = "0.8")
)
md_text <- "# The story of the fox
The quick brown fox **jumps over** the lazy dog.
The quick *brown fox* jumps over the lazy dog."
md_to_html(md_text)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.