orbital-datatable 0.1.1

Interactive DataTable product for the Orbital component library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(feature = "hydrate")]
mod download_impl;

#[cfg(feature = "hydrate")]
pub use download_impl::{download_bytes, print_html, write_clipboard_text};

#[cfg(not(feature = "hydrate"))]
pub fn download_bytes(_filename: &str, _bytes: &[u8], _mime: &str) {}

#[cfg(not(feature = "hydrate"))]
pub fn print_html(_html: &str) {}

#[cfg(not(feature = "hydrate"))]
pub fn write_clipboard_text(_text: &str) {}