Skip to main content

ClientSystemStatusExt

Trait ClientSystemStatusExt 

Source
pub trait ClientSystemStatusExt {
    // Required method
    fn ping(&self) -> Ping<'_>;
}
Expand description

Endpoints related to system health

Required Methods§

Source

fn ping(&self) -> Ping<'_>

Ping API

Always responds with Ok if it responds at all.

Sends a GET request to /v1/ping

let response = client.ping()
   .send()
   .await;

Implementors§