blob: e7383282d63e6dd5ef41b516e4189a882b6023ea [file] [log] [blame]
// Copyright 2020 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.
//! `fidl_fuchsia_update_ext` contains wrapper types around the auto-generated `fidl_fuchsia_update`
//! bindings.
#[cfg(target_os = "fuchsia")]
mod commit;
mod types;
#[cfg(target_os = "fuchsia")]
pub use crate::commit::{query_commit_status, CommitStatus};
pub use crate::types::{
proptest_util::random_version_available, CheckOptions, CheckOptionsBuilder,
CheckOptionsDecodeError, Initiator, InstallationDeferredData, InstallationErrorData,
InstallationProgress, InstallingData, State, UpdateInfo,
};