#[macro_export]
macro_rules! impl_client_v17__get_memory_info {
() => {
impl Client {
pub fn get_memory_info(&self) -> Result<GetMemoryInfoStats> {
self.call("getmemoryinfo", &[])
}
}
};
}
#[macro_export]
macro_rules! impl_client_v17__help {
() => {
impl Client {
pub fn help(&self) -> Result<String> { self.call("help", &[]) }
}
};
}
#[macro_export]
macro_rules! impl_client_v17__logging {
() => {
impl Client {
pub fn logging(&self) -> Result<Logging> { self.call("logging", &[]) }
}
};
}
#[macro_export]
macro_rules! impl_client_v17__stop {
() => {
impl Client {
pub fn stop(&self) -> Result<String> { self.call("stop", &[]) }
}
};
}
#[macro_export]
macro_rules! impl_client_v17__uptime {
() => {
impl Client {
pub fn uptime(&self) -> Result<u32> { self.call("uptime", &[]) }
}
};
}