Skip to main content

fluvio_sc_schema/tableformat/
mod.rs

1pub use fluvio_controlplane_metadata::tableformat::*;
2
3mod convert {
4
5    use crate::{CreatableAdminSpec, DeletableAdminSpec, UpdatableAdminSpec};
6
7    use crate::AdminSpec;
8    use super::TableFormatSpec;
9
10    impl AdminSpec for TableFormatSpec {}
11
12    impl CreatableAdminSpec for TableFormatSpec {}
13
14    impl DeletableAdminSpec for TableFormatSpec {
15        type DeleteKey = String;
16    }
17
18    impl UpdatableAdminSpec for TableFormatSpec {
19        type UpdateKey = String;
20        type UpdateAction = String;
21    }
22}