pub trait ToTuple<T> {
// Required method
fn to_tuple(self) -> MiddlewareTuple<T>;
}Required Methods§
fn to_tuple(self) -> MiddlewareTuple<T>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".