pub struct ReadHealthResponse {
pub cluster_id: String,
pub cluster_name: String,
pub initialized: bool,
pub performance_standby: bool,
pub replication_dr_mode: Option<String>,
pub replication_perf_mode: Option<String>,
pub sealed: bool,
pub server_time_utc: u64,
pub standby: bool,
pub version: String,
}
Expand description
Response from executing ReadHealthRequest
Fields§
§cluster_id: String
§cluster_name: String
§initialized: bool
§performance_standby: bool
§replication_dr_mode: Option<String>
§replication_perf_mode: Option<String>
§sealed: bool
§server_time_utc: u64
§standby: bool
§version: String
Trait Implementations§
source§impl Debug for ReadHealthResponse
impl Debug for ReadHealthResponse
source§impl<'de> Deserialize<'de> for ReadHealthResponse
impl<'de> Deserialize<'de> for ReadHealthResponse
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ReadHealthResponse
impl RefUnwindSafe for ReadHealthResponse
impl Send for ReadHealthResponse
impl Sync for ReadHealthResponse
impl Unpin for ReadHealthResponse
impl UnwindSafe for ReadHealthResponse
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more