diff --git a/zone/src/lib.rs b/zone/src/lib.rs index 6127f27..b14c9cc 100644 --- a/zone/src/lib.rs +++ b/zone/src/lib.rs @@ -739,13 +739,13 @@ impl FromStr for State { #[derive(Debug, Clone)] pub struct Zone { - id: Option, - name: String, - state: State, - path: PathBuf, - uuid: Option, - brand: String, - ip_type: IpType, + pub id: Option, + pub name: String, + pub state: State, + pub path: PathBuf, + pub uuid: Option, + pub brand: String, + pub ip_type: IpType, } impl Zone {