pub struct Status {
pub state: Option<State>,
pub health: Option<Health>,
pub health_rollup: Option<Health>,
}Expand description
The status and health of a resource and its children.
Fields§
§state: Option<State>The state of the resource.
health: Option<Health>The health state of this resource in the absence of its dependent resources.
health_rollup: Option<Health>The overall health state from the view of this resource.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnsafeUnpin for Status
impl UnwindSafe for Status
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