pub trait SystemApiMut {
type Error;
// Required method
fn get_agent_version(&mut self) -> Result<VersionResponse, Self::Error>;
}Required Associated Types§
Required Methods§
Sourcefn get_agent_version(&mut self) -> Result<VersionResponse, Self::Error>
fn get_agent_version(&mut self) -> Result<VersionResponse, Self::Error>
Get Agent Version
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".