pub struct PowerAllocation {
pub allocated_watts: Option<f64>,
pub requested_watts: Option<f64>,
}
Expand description
Power allocation for a subsystem.
Fields§
§allocated_watts: Option<f64>
The total amount of power that has been allocated or budgeted to this subsystem.
requested_watts: Option<f64>
The potential power, in watts, that the subsystem requests, which might be higher than the current level being consumed because the requested power includes a budget that the subsystem wants for future use.
Trait Implementations§
Source§impl Clone for PowerAllocation
impl Clone for PowerAllocation
Source§fn clone(&self) -> PowerAllocation
fn clone(&self) -> PowerAllocation
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PowerAllocation
impl Debug for PowerAllocation
Source§impl Default for PowerAllocation
impl Default for PowerAllocation
Source§impl<'de> Deserialize<'de> for PowerAllocation
impl<'de> Deserialize<'de> for PowerAllocation
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
Source§impl Metadata<'static> for PowerAllocation
impl Metadata<'static> for PowerAllocation
Source§const JSON_SCHEMA: &'static str = "PowerSubsystem.v1_1_0.json"
const JSON_SCHEMA: &'static str = "PowerSubsystem.v1_1_0.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for PowerAllocation
impl RefUnwindSafe for PowerAllocation
impl Send for PowerAllocation
impl Sync for PowerAllocation
impl Unpin for PowerAllocation
impl UnwindSafe for PowerAllocation
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