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