aboutsummaryrefslogtreecommitdiff
path: root/tests/golden_output/aidl-test-interface-rust-source/gen/android/aidl/tests/UnionWithFd.rs
blob: 49f9f16f9f107addd10916e8d83a01f14f6af957 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#![forbid(unsafe_code)]
#![rustfmt::skip]
#[derive(Debug)]
pub enum UnionWithFd {
  Num(i32),
  Pfd(Option<binder::ParcelFileDescriptor>),
}
impl Default for UnionWithFd {
  fn default() -> Self {
    Self::Num(0)
  }
}
impl binder::Parcelable for UnionWithFd {
  fn write_to_parcel(&self, parcel: &mut binder::binder_impl::BorrowedParcel) -> std::result::Result<(), binder::StatusCode> {
    match self {
      Self::Num(v) => {
        parcel.write(&0i32)?;
        parcel.write(v)
      }
      Self::Pfd(v) => {
        parcel.write(&1i32)?;
        let __field_ref = v.as_ref().ok_or(binder::StatusCode::UNEXPECTED_NULL)?;
        parcel.write(__field_ref)
      }
    }
  }
  fn read_from_parcel(&mut self, parcel: &binder::binder_impl::BorrowedParcel) -> std::result::Result<(), binder::StatusCode> {
    let tag: i32 = parcel.read()?;
    match tag {
      0 => {
        let value: i32 = parcel.read()?;
        *self = Self::Num(value);
        Ok(())
      }
      1 => {
        let value: Option<binder::ParcelFileDescriptor> = Some(parcel.read()?);
        *self = Self::Pfd(value);
        Ok(())
      }
      _ => {
        Err(binder::StatusCode::BAD_VALUE)
      }
    }
  }
}
binder::impl_serialize_for_parcelable!(UnionWithFd);
binder::impl_deserialize_for_parcelable!(UnionWithFd);
impl binder::binder_impl::ParcelableMetadata for UnionWithFd {
  fn get_descriptor() -> &'static str { "android.aidl.tests.UnionWithFd" }
}
pub mod Tag {
  #![allow(non_upper_case_globals)]
  use binder::declare_binder_enum;
  declare_binder_enum! {
    Tag : [i32; 2] {
      num = 0,
      pfd = 1,
    }
  }
}
pub(crate) mod mangled {
 pub use super::UnionWithFd as _7_android_4_aidl_5_tests_11_UnionWithFd;
 pub use super::Tag::Tag as _7_android_4_aidl_5_tests_11_UnionWithFd_3_Tag;
}