pub trait MaintenanceProxyInterface: Send + Sync {
type GetWritableUtcClockResponseFut: Future<Output = Result<Clock, Error>> + Send;
// Required method
fn get_writable_utc_clock(&self) -> Self::GetWritableUtcClockResponseFut;
}
pub trait MaintenanceProxyInterface: Send + Sync {
type GetWritableUtcClockResponseFut: Future<Output = Result<Clock, Error>> + Send;
// Required method
fn get_writable_utc_clock(&self) -> Self::GetWritableUtcClockResponseFut;
}