pub enum Reference {
Top,
Bottom,
Front,
Rear,
Left,
Right,
Middle,
}
Expand description
The reference areas for the location of the part within an enclosure.
Variants§
Top
This value shall indicate the part is in the top of the unit.
Bottom
This value shall indicate the part is in the bottom of the unit.
Front
This value shall indicate the part is in the front of the unit.
Rear
This value shall indicate the part is in the rear of the unit.
Left
This value shall indicate the part is on the left side of of the unit.
Right
This value shall indicate the part is on the right side of the unit.
Middle
This value shall indicate the part is in the middle of the unit.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Reference
impl<'de> Deserialize<'de> for Reference
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 Reference
impl Metadata<'static> for Reference
Source§const JSON_SCHEMA: &'static str = "Resource.v1_11_4.json"
const JSON_SCHEMA: &'static str = "Resource.v1_11_4.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 Reference
impl RefUnwindSafe for Reference
impl Send for Reference
impl Sync for Reference
impl Unpin for Reference
impl UnwindSafe for Reference
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