Enum PhysicalContext

Source
pub enum PhysicalContext {
Show 47 variants Room, Intake, Exhaust, LiquidInlet, LiquidOutlet, Front, Back, Upper, Lower, CPU, CPUSubsystem, GPU, GPUSubsystem, FPGA, Accelerator, ASIC, Backplane, SystemBoard, PowerSupply, PowerSubsystem, VoltageRegulator, Rectifier, StorageDevice, NetworkingDevice, ComputeBay, StorageBay, NetworkBay, ExpansionBay, PowerSupplyBay, Memory, MemorySubsystem, Chassis, Fan, CoolingSubsystem, Motor, Transformer, ACUtilityInput, ACStaticBypassInput, ACMaintenanceBypassInput, DCBus, ACOutput, ACInput, TrustedModule, Board, Transceiver, Battery, Pump,
}

Variants§

§

Room

The room.

§

Intake

The air intake point or points or region of the chassis.

§

Exhaust

The air exhaust point or points or region of the chassis.

§

LiquidInlet

The liquid inlet point of the chassis. Added in version 2017.3.

§

LiquidOutlet

The liquid outlet point of the chassis. Added in version 2017.3.

§

Front

The front of the chassis.

§

Back

The back of the chassis.

§

Upper

The upper portion of the chassis.

§

Lower

The lower portion of the chassis.

§

CPU

A processor (CPU).

§

CPUSubsystem

The entire processor (CPU) subsystem. Added in version 2018.3.

§

GPU

A graphics processor (GPU).

§

GPUSubsystem

The entire graphics processor (GPU) subsystem. Added in version 2018.3.

§

FPGA

An FPGA. Added in version 2018.3.

§

Accelerator

An accelerator. Added in version 2018.3.

§

ASIC

An ASIC device, such as a networking chip or chipset component. Added in version 2017.3.

§

Backplane

A backplane within the chassis.

§

SystemBoard

The system board (PCB).

§

PowerSupply

A power supply.

§

PowerSubsystem

The entire power subsystem. Added in version 2019.1.

§

VoltageRegulator

A voltage regulator device.

§

Rectifier

A rectifier device. Added in version 2019.1.

§

StorageDevice

A storage device.

§

NetworkingDevice

A networking device.

§

ComputeBay

Within a compute bay.

§

StorageBay

Within a storage bay.

§

NetworkBay

Within a networking bay.

§

ExpansionBay

Within an expansion bay.

§

PowerSupplyBay

Within a power supply bay.

§

Memory

A memory device. Added in version 2017.1.

§

MemorySubsystem

The entire memory subsystem. Added in version 2018.3.

§

Chassis

The entire chassis. Added in version 2017.2.

§

Fan

A fan. Added in version 2017.2.

§

CoolingSubsystem

The entire cooling, or air and liquid, subsystem. Added in version 2018.3.

§

Motor

A motor. Added in version 2018.3.

§

Transformer

A transformer. Added in version 2018.3.

§

ACUtilityInput

An AC utility input. Added in version 2018.3.

§

ACStaticBypassInput

An AC static bypass input. Added in version 2018.3.

§

ACMaintenanceBypassInput

An AC maintenance bypass input. Added in version 2018.3.

§

DCBus

A DC bus. Added in version 2018.3.

§

ACOutput

An AC output. Added in version 2018.3.

§

ACInput

An AC input. Added in version 2018.3.

§

TrustedModule

A trusted module. Added in version 2020.4.

§

Board

This value shall indicate a circuit board that is not the primary or system board within a context that cannot be described by other defined values. Added in version 2021.1.

§

Transceiver

This value shall indicate a transceiver attached to a device. Added in version 2021.1.

§

Battery

A battery. Added in version 2021.2.

§

Pump

A pump. Added in version 2021.3.

Trait Implementations§

Source§

impl Clone for PhysicalContext

Source§

fn clone(&self) -> PhysicalContext

Returns a duplicate of the value. Read more
1.0.0 · Source§

const fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PhysicalContext

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for PhysicalContext

Source§

fn default() -> PhysicalContext

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for PhysicalContext

Source§

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 PhysicalContext

Source§

const JSON_SCHEMA: &'static str = "PhysicalContext.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.
Source§

impl Serialize for PhysicalContext

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,