fidl_next_codec/fuchsia/
mod.rs1mod channel;
8mod handle;
9
10use zx::Handle;
11
12use crate::decoder::InternalHandleDecoder;
13use crate::encoder::InternalHandleEncoder;
14use crate::{DecodeError, EncodeError};
15
16pub use self::channel::*;
17pub use self::handle::*;
18pub use zx;
19
20pub trait HandleDecoder: InternalHandleDecoder {
22 fn take_handle(&mut self) -> Result<Handle, DecodeError>;
24
25 fn handles_remaining(&mut self) -> usize;
27
28 #[doc(hidden)]
30 fn take_raw_driver_handle(&mut self) -> Result<u32, DecodeError> {
31 Err(DecodeError::DriverHandlesUnsupported)
32 }
33}
34
35pub trait HandleEncoder: InternalHandleEncoder {
37 fn push_handle(&mut self, handle: Handle) -> Result<(), EncodeError>;
39
40 fn handles_pushed(&self) -> usize;
42
43 #[doc(hidden)]
45 fn push_raw_driver_handle(&mut self, _raw_driver_handle: u32) -> Result<(), EncodeError> {
46 Err(EncodeError::DriverHandlesUnsupported)
47 }
48}