Trait SystemApiMut

Source
pub trait SystemApiMut {
    type Error;

    // Required method
    fn get_agent_version(&mut self) -> Result<VersionResponse, Self::Error>;
}

Required Associated Types§

Required Methods§

Source

fn get_agent_version(&mut self) -> Result<VersionResponse, Self::Error>

Get Agent Version

Implementors§

Source§

impl<T, E> SystemApiMut for T
where T: SystemApi<Error = E>,

Source§

type Error = E