pub trait SomeRemoteCtx {
// Required method
fn get_remote_ctx<T>(&self, input: T) -> Option<(SurfnetRemoteClient, T)>;
}Required Methods§
fn get_remote_ctx<T>(&self, input: T) -> Option<(SurfnetRemoteClient, T)>
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.