vtx-sdk 0.1.14

Official SDK for developing VTX plugins using Rust and WebAssembly.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Input/output domain.

pub mod fs;
pub mod stream;

pub use fs::{
    buffer_from_json, buffer_from_string, create_memory_buffer, head, list_objects, open_uri,
    read_all, read_json, read_range, read_to_string, VfsBuffer, VfsObjectMeta,
};
pub use stream::{memory_buffer, open_file, BufferExt, StreamBuffer};