typed_store_error/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2021, Facebook, Inc. and its affiliates
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
#![warn(
    future_incompatible,
    nonstandard_style,
    rust_2018_idioms,
    rust_2021_compatibility
)]

pub mod errors;

pub use errors::TypedStoreError;
pub type StoreError = errors::TypedStoreError;