pub struct NodeStateSmartfailNode {
pub dead: Option<bool>,
pub down: Option<bool>,
pub error: Option<String>,
pub id: Option<i32>,
pub in_cluster: Option<bool>,
pub lnn: Option<i32>,
pub readonly: Option<bool>,
pub shutdown_readonly: Option<bool>,
pub smartfailed: Option<bool>,
pub status: Option<i32>,
}Fields§
§dead: Option<bool>This node is dead (dead_devs).
down: Option<bool>This node is down (down_devs).
error: Option<String>Error message, if the HTTP status returned from this node was not 200.
id: Option<i32>Node ID of the node reporting this information.
in_cluster: Option<bool>This node is in the cluster (all_devs).
lnn: Option<i32>Logical node number of the node reporting this information.
readonly: Option<bool>This node is readonly (ro_devs).
shutdown_readonly: Option<bool>This node is shutdown readonly (down_devs).
smartfailed: Option<bool>This node is smartfailed (soft_devs).
status: Option<i32>Status of the HTTP response from this node if not 200. If 200, this field does not appear.
Trait Implementations§
Source§impl Debug for NodeStateSmartfailNode
impl Debug for NodeStateSmartfailNode
Source§impl<'de> Deserialize<'de> for NodeStateSmartfailNode
impl<'de> Deserialize<'de> for NodeStateSmartfailNode
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 NodeStateSmartfailNode
impl RefUnwindSafe for NodeStateSmartfailNode
impl Send for NodeStateSmartfailNode
impl Sync for NodeStateSmartfailNode
impl Unpin for NodeStateSmartfailNode
impl UnwindSafe for NodeStateSmartfailNode
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more