arcbox-constants 0.4.12

Shared protocol and runtime constants for ArcBox
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Internal ArcBox host share tag.
pub const TAG_ARCBOX: &str = "arcbox";

/// Host `/Users` share tag.
pub const TAG_USERS: &str = "users";

/// Host `/private` share tag (macOS symlink targets: `/tmp`, `/var/folders`, etc.).
pub const TAG_PRIVATE: &str = "private";

/// Guest mountpoint for the internal ArcBox share.
pub const MOUNT_ARCBOX: &str = "/arcbox";

/// Guest mountpoint for the host `/Users` share.
pub const MOUNT_USERS: &str = "/Users";

/// Guest mountpoint for the host `/private` share.
pub const MOUNT_PRIVATE: &str = "/private";