// SPDX-License-Identifier: Apache-2.0
// Copyright 2026 KylinSoft Co., Ltd. <https://www.kylinos.cn/>
// See LICENSES for license details.
//! Fallible clone trait for tipc-std.
/// Trait for fallible duplication of types that can be cloned.
pubtraitTryClone: Sized {typeError;fntry_clone(&self)->Result<Self, Self::Error>;}