pub trait ChannelHandler<T, E>where
E: Error,{
// Required method
async fn aroud(&self, join_point: ProceedingJoinPoint<T, E>) -> Result<T, E>;
}Required Methods§
async fn aroud(&self, join_point: ProceedingJoinPoint<T, E>) -> Result<T, E>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.