sail-rs 0.2.18

Official Rust SDK for Sail: create and drive sailboxes (sandboxed cloud VMs) with lifecycle, streaming exec, file transfer, and ingress.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Typed sailbox surface: domain models and the HTTP API client.

pub(crate) mod listeners;
pub mod object;
pub mod ssh;
pub mod types;

pub(crate) mod api;

pub use api::UpgradeResult;
// Shared client-side validation, re-exported for the language bindings.
#[doc(hidden)]
pub use api::{
    validate_autosleep_timeout, validate_ingress_ports, validate_size_limits,
    validate_volume_mounts,
};