pub trait ManagementClient: PollClient {
// Provided methods
fn reboot(&mut self, to: To) -> ClientResult<'_, Reboot, Self> { ... }
fn uptime(&mut self) -> ClientResult<'_, Uptime, Self> { ... }
}
Available on crate feature
management-client
only.Expand description
All the other methods that are fit to expose.
Provided Methods§
fn reboot(&mut self, to: To) -> ClientResult<'_, Reboot, Self>
fn uptime(&mut self) -> ClientResult<'_, Uptime, Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.