Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions zone/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -739,13 +739,13 @@ impl FromStr for State {

#[derive(Debug, Clone)]
pub struct Zone {
id: Option<u64>,
name: String,
state: State,
path: PathBuf,
uuid: Option<String>,
brand: String,
ip_type: IpType,
pub id: Option<u64>,
pub name: String,
pub state: State,
pub path: PathBuf,
pub uuid: Option<String>,
pub brand: String,
pub ip_type: IpType,
}

impl Zone {
Expand Down
Loading