settings/
message.rs

1// Copyright 2020 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
5mod beacon;
6
7/// Common message-related definitions.
8pub mod action_fuse;
9pub mod base;
10pub mod delegate;
11pub mod message_client;
12pub mod message_hub;
13pub mod messenger;
14pub mod receptor;
15
16/// Representation of time used for logging.
17pub type Timestamp = zx::MonotonicInstant;