pub struct DrivesDriveFirmwareUpdateNodeStatus {
pub failed: Option<i32>,
pub finish_time: Option<String>,
pub remaining: Option<i32>,
pub start_time: Option<String>,
pub status: Option<String>,
pub updated: Option<i32>,
}
Fields§
§failed: Option<i32>
The number of drives that did not successfully complete firmware updates update on the node.
finish_time: Option<String>
Time when drive firmware update finished on node.
remaining: Option<i32>
Number of drives remaining to be updated on node.
start_time: Option<String>
Time when drive firmware update started on node.
status: Option<String>
Overall status of this nodes firmware updates.
updated: Option<i32>
The number of drives that completed firmware updates on the node.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DrivesDriveFirmwareUpdateNodeStatus
impl<'de> Deserialize<'de> for DrivesDriveFirmwareUpdateNodeStatus
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 DrivesDriveFirmwareUpdateNodeStatus
impl RefUnwindSafe for DrivesDriveFirmwareUpdateNodeStatus
impl Send for DrivesDriveFirmwareUpdateNodeStatus
impl Sync for DrivesDriveFirmwareUpdateNodeStatus
impl Unpin for DrivesDriveFirmwareUpdateNodeStatus
impl UnwindSafe for DrivesDriveFirmwareUpdateNodeStatus
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