pub struct Device {
pub capacity_bytes: Option<i64>,
pub manufacturer: Option<String>,
pub model: Option<String>,
pub name: String,
pub oem: Option<Oem>,
pub status: Option<Status>,
}
Expand description
A storage device, such as a disk drive or optical media device.
Fields§
§capacity_bytes: Option<i64>
The size, in bytes, of the storage device.
manufacturer: Option<String>
The name of the manufacturer of this device.
model: Option<String>
The product model number of this device.
name: String
The name of the Resource or array member.
oem: Option<Oem>
§status: Option<Status>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Device
impl<'de> Deserialize<'de> for Device
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 Device
impl Metadata<'static> for Device
Source§const JSON_SCHEMA: &'static str = "SimpleStorage.v1_3_1.json"
const JSON_SCHEMA: &'static str = "SimpleStorage.v1_3_1.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 Device
impl RefUnwindSafe for Device
impl Send for Device
impl Sync for Device
impl Unpin for Device
impl UnwindSafe for Device
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