pub trait PackageServer_ProxyInterface: Send + Sync {
type GetUrlResponseFut: Future<Output = Result<String, Error>> + Send;
// Required method
fn get_url(&self) -> Self::GetUrlResponseFut;
}Required Associated Types§
Required Methods§
fn get_url(&self) -> Self::GetUrlResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".