1
2
3
4
5
6
7
/// LXD host location
pub enum Location {
    /// Local host
    Local,
    /// Remote host
    Remote(String),
}