aboutsummaryrefslogtreecommitdiffstats
path: root/zone_core/src/container.rs
diff options
context:
space:
mode:
Diffstat (limited to 'zone_core/src/container.rs')
-rw-r--r--zone_core/src/container.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/zone_core/src/container.rs b/zone_core/src/container.rs
index 9296fb6..2020b20 100644
--- a/zone_core/src/container.rs
+++ b/zone_core/src/container.rs
@@ -18,16 +18,16 @@ mod status;
)]
#[serde(rename_all = "camelCase")]
pub struct Container {
- #[header("ID")]
+ #[tabled("ID")]
pub id: u64,
- #[header("Template")]
+ #[tabled("Template")]
pub template: String,
- #[header("User")]
+ #[tabled("User")]
pub user: String,
- #[header("Status")]
+ #[tabled("Status")]
pub status: ContainerStatus,
}