pub enum FpgaType {
Integrated,
Discrete,
UnsupportedValue,
}Variants§
Integrated
The FPGA device integrated with other processor in the single chip.
Discrete
The discrete FPGA device.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FpgaType
impl<'de> Deserialize<'de> for FpgaType
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 ToSnakeCase for FpgaType
impl ToSnakeCase for FpgaType
Source§fn to_snake_case(&self) -> &'static str
fn to_snake_case(&self) -> &'static str
Convert this enum variant to a
snake_case stringimpl Copy for FpgaType
impl Eq for FpgaType
impl StructuralPartialEq for FpgaType
Auto Trait Implementations§
impl Freeze for FpgaType
impl RefUnwindSafe for FpgaType
impl Send for FpgaType
impl Sync for FpgaType
impl Unpin for FpgaType
impl UnsafeUnpin for FpgaType
impl UnwindSafe for FpgaType
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