pub trait ClockExt {
// Required method
fn connect_to_clock(
&self,
instance: &str,
) -> Result<Client<Clock>, DriverError>;
}Expand description
Extension trait for DriverContext to simplify connecting to clock resources.
Required Methods§
Sourcefn connect_to_clock(&self, instance: &str) -> Result<Client<Clock>, DriverError>
fn connect_to_clock(&self, instance: &str) -> Result<Client<Clock>, DriverError>
Connects to a clock resource with the given instance name.