aboutsummaryrefslogtreecommitdiffstats
path: root/zone_core/src/container.rs
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-04-19 13:02:32 -0500
committerToby Vincent <tobyv13@gmail.com>2022-04-19 13:02:32 -0500
commite3fc06077d7334d627a86e38077386268a81376c (patch)
tree4c95f149858d096c881c668ea52180b123b68713 /zone_core/src/container.rs
parent07116c1daf1e25ad22436be04d64e039543ca1b5 (diff)
chore: update deps
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,
}