settings/ingress.rs
1// Copyright 2021 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
5//! This mod defines the building blocks for receiving inbound communication from external
6//! interfaces, such as FIDL. It also includes common implementations for working with
7//! `Jobs` for incoming requests.
8
9/// The [fidl] mod enables defining components that provide inbound communication over FIDL.
10pub mod fidl;