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§

source

type GetWritableUtcClockResponseFut: Future<Output = Result<Clock, Error>> + Send

Required Methods§

Implementors§