pub enum HostInterfaceType {
NetworkHostInterface,
UnsupportedValue,
}Variants§
NetworkHostInterface
This interface is a network host interface.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for HostInterfaceType
impl Clone for HostInterfaceType
Source§fn clone(&self) -> HostInterfaceType
fn clone(&self) -> HostInterfaceType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HostInterfaceType
impl Debug for HostInterfaceType
Source§impl<'de> Deserialize<'de> for HostInterfaceType
impl<'de> Deserialize<'de> for HostInterfaceType
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 PartialEq for HostInterfaceType
impl PartialEq for HostInterfaceType
Source§impl Serialize for HostInterfaceType
impl Serialize for HostInterfaceType
Source§impl ToSnakeCase for HostInterfaceType
impl ToSnakeCase for HostInterfaceType
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 HostInterfaceType
impl Eq for HostInterfaceType
impl StructuralPartialEq for HostInterfaceType
Auto Trait Implementations§
impl Freeze for HostInterfaceType
impl RefUnwindSafe for HostInterfaceType
impl Send for HostInterfaceType
impl Sync for HostInterfaceType
impl Unpin for HostInterfaceType
impl UnsafeUnpin for HostInterfaceType
impl UnwindSafe for HostInterfaceType
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