blob: f8ba52fc368459cbca5a86ae4b2b6c6bd776982e [file] [log] [blame]
// Copyright 2018 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.
//! Types that are shared across more than one Account Management crate.
#![deny(missing_docs)]
/// An error type for problems encountered in the account manager and account handler.
mod error;
/// More ergonomic wrapper types for FIDL account and persona identifiers.
mod identifiers;
pub use crate::error::{AccountManagerError, ResultExt};
pub use crate::identifiers::{
FidlGlobalAccountId, FidlLocalAccountId, FidlLocalPersonaId, GlobalAccountId, LocalAccountId,
LocalPersonaId,
};