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