blob: 4d82c66131f09a8afcc8d1f13a9749c336edc66e [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//! Library and runtime for fidl bindings.
#![deny(missing_docs)]
#![allow(elided_lifetimes_in_paths)]
#[macro_use]
pub mod encoding;
pub mod client;
pub mod endpoints;
pub mod handle;
pub mod server;
mod error;
pub use self::error::{Error, Result};
// Used to generate the types for fidl Bits.
#[doc(hidden)]
pub use bitflags::bitflags;
pub use server::ServeInner;
pub use handle::*;
pub mod epitaph;