aws_smithy_runtime_api/
box_error.rs

1/*
2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6/// A boxed error that is `Send` and `Sync`.
7pub type BoxError = Box<dyn std::error::Error + Send + Sync>;