aboutsummaryrefslogtreecommitdiff
path: root/tests/golden_output/aidl-test-interface-rust-source/gen/android/aidl/tests/BackendType.rs
blob: 7f4be5644d477e16522ea7c14b2e2216228252fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![forbid(unsafe_code)]
#![rustfmt::skip]
#![allow(non_upper_case_globals)]
use binder::declare_binder_enum;
declare_binder_enum! {
  BackendType : [i8; 4] {
    CPP = 0,
    JAVA = 1,
    NDK = 2,
    RUST = 3,
  }
}
pub(crate) mod mangled {
 pub use super::BackendType as _7_android_4_aidl_5_tests_11_BackendType;
}