nvisy-rt-sdk 0.1.1

Rust client for the Nvisy Runtime API: direct multimodal redaction
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Data models for the Nvisy Runtime API.

mod context;
mod error;
mod file;
mod infra;
mod page;
mod run;

pub use context::*;
pub use error::*;
pub use file::*;
pub use infra::*;
pub use page::*;
pub use run::*;