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 util;
10mod value;
11
12pub mod library;
13
14pub use decode::{decode, decode_request, decode_response};
15pub use encode::{encode, encode_request, encode_response};
16pub use error::Error;
17pub use value::Value;