Trait ClientSystemStatusExt
Source pub trait ClientSystemStatusExt {
// Required method
fn ping(&self) -> Ping<'_>;
}
Expand description
Endpoints related to system health
Ping API
Always responds with Ok if it responds at all.
Sends a GET request to /v1/ping
ⓘlet response = client.ping()
.send()
.await;