fidl_codec/lib.rs
1// Copyright 2019 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4#![recursion_limit = "256"]
5
6mod decode;
7mod encode;
8mod error;
9mod handle;
10mod transaction;
11mod util;
12mod value;
13
14pub mod library;
15
16pub use decode::{decode, decode_request, decode_response};
17pub use encode::{encode, encode_request, encode_response};
18pub use error::Error;
19pub use handle::*;
20pub use value::Value;
21
22pub use fidl_data_zx as zx;
23pub use fidl_data_zx::{ObjType as ObjectType, Rights};