use-docker-volume 0.0.1

Primitive Docker volume and mount syntax helpers for RustUse
Documentation
# use-docker-volume

Primitive Docker volume and mount syntax helpers for `RustUse`.

This crate parses and renders named volumes, bind mounts, anonymous volumes, and
read-only flags. It keeps behavior simple and does not inspect the filesystem.

## Basic Usage

```rust
use use_docker_volume::{DockerVolumeMount, MountAccess, VolumeKind};

let mount: DockerVolumeMount = "cache:/var/cache:ro".parse()?;

assert_eq!(mount.kind(), VolumeKind::Named);
assert_eq!(mount.access(), MountAccess::ReadOnly);
assert_eq!(mount.target(), "/var/cache");
# Ok::<(), Box<dyn std::error::Error>>(())
```