fidl_next_fuchsia_version/
fidl_next_fuchsia_version.rs1#![warn(clippy::all)]
3#![allow(unused_parens, unused_variables, unused_mut, unused_imports, unreachable_code)]
4
5pub mod natural {
6
7 #[doc = " The ABI revision denotes the semantics of the Fuchsia System Interface that\n an application expects the platform to provide. ABI revision values are\n chosen at random.\n"]
8 pub type AbiRevision = u64;
9
10 #[doc = " The API level denotes a set of APIs available when building an application\n for a given release of the FUCHSIA IDK. API levels are assigned in\n increasing order.\n"]
11 pub type ApiLevel = u64;
12}
13
14pub mod wire {
15
16 pub type AbiRevision = ::fidl_next::WireU64;
18
19 pub type ApiLevel = ::fidl_next::WireU64;
21}
22
23pub mod wire_optional {}
24
25pub mod generic {}
26
27pub use self::natural::*;
28
29pub mod compat {}