Nothing
#' Browse API Documentation
#'
#' This function opens in a web browser the documentation of the Rust API.
#'
#' @return \code{NULL}, invisibly.
#' @export
#'
api_documentation <- function() {
original_dir <- getwd()
on.exit(setwd(original_dir))
find_package_root()
dir <- file.path("src", "rust", "roxido")
setwd(dir)
run("doc", "--open")
invisible(NULL)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.