pub enum ThermalDirection {
FrontToBack,
BackToF,
TopExhaust,
Sealed,
}
Variants§
FrontToBack
This value shall indicate a chassis with the air intake generally from the front of the chassis and the air exhaust out the back of the chassis.
BackToF
This value shall indicate a chassis with the air intake generally from the back of the chassis and the air exhaust out the front of the chassis.
TopExhaust
This value shall indicate a chassis with the air exhaust out the top of the chassis.
Sealed
This value shall indicate a sealed chassis with no air pathway through the chassis.
Trait Implementations§
Source§impl Clone for ThermalDirection
impl Clone for ThermalDirection
Source§fn clone(&self) -> ThermalDirection
fn clone(&self) -> ThermalDirection
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 ThermalDirection
impl Debug for ThermalDirection
Source§impl Default for ThermalDirection
impl Default for ThermalDirection
Source§fn default() -> ThermalDirection
fn default() -> ThermalDirection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ThermalDirection
impl<'de> Deserialize<'de> for ThermalDirection
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 ThermalDirection
impl Metadata<'static> for ThermalDirection
Source§const JSON_SCHEMA: &'static str = "Chassis.v1_23_0.json"
const JSON_SCHEMA: &'static str = "Chassis.v1_23_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 ThermalDirection
impl RefUnwindSafe for ThermalDirection
impl Send for ThermalDirection
impl Sync for ThermalDirection
impl Unpin for ThermalDirection
impl UnwindSafe for ThermalDirection
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