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