/*******************************************************************************
*
* Copyright (c) 2025 - 2026 Haixing Hu.
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0.
*
******************************************************************************/
//! Cloneable asynchronous monitor capability.
use crate::monitor::AsyncMonitor;
/// Aggregate trait for cloneable, shared asynchronous monitor handles.
pub trait SharedAsyncMonitor: AsyncMonitor + Clone + Send + Sync + 'static {}
impl<T> SharedAsyncMonitor for T where T: AsyncMonitor + Clone + Send + Sync + 'static {}