pub trait ResourceProvidesStatus {
// Required method
fn resource_status_ref(&self) -> Option<&ResourceStatusSchema>;
// Provided method
fn status(&self) -> Option<Status> { ... }
}Expand description
Represents Redfish resource that provides it’s status.
Required Methods§
Sourcefn resource_status_ref(&self) -> Option<&ResourceStatusSchema>
fn resource_status_ref(&self) -> Option<&ResourceStatusSchema>
Required function. Must be implemented for Redfish resources that provides resource status.