shiguredo_container 2026.1.0-canary.8

Runtime-agnostic container library for Rust on macOS and Linux
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `ContainerAsync` と関連型。元の 0.27 の `core::containers` に相当。

pub(crate) mod async_container;
pub(crate) mod request;

pub use async_container::{ContainerAsync, exec::ExecResult};
pub use request::{ContainerRequest, ExtraHost, PortMapping};

#[cfg(feature = "blocking")]
pub(crate) mod sync_container;

#[cfg(feature = "blocking")]
pub use sync_container::{Container, SyncExecResult};