pub enum LogEntryType {
Event,
Sel,
Oem,
Cxl,
UnsupportedValue,
}Variants§
Event
A Redfish-defined message.
Sel
A legacy IPMI System Event Log (SEL) entry.
Oem
An entry in an OEM-defined format.
Cxl
A CXL log entry.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for LogEntryType
impl Clone for LogEntryType
Source§fn clone(&self) -> LogEntryType
fn clone(&self) -> LogEntryType
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 LogEntryType
impl Debug for LogEntryType
Source§impl<'de> Deserialize<'de> for LogEntryType
impl<'de> Deserialize<'de> for LogEntryType
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 LogEntryType
impl PartialEq for LogEntryType
Source§impl Serialize for LogEntryType
impl Serialize for LogEntryType
Source§impl ToSnakeCase for LogEntryType
impl ToSnakeCase for LogEntryType
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 LogEntryType
impl Eq for LogEntryType
impl StructuralPartialEq for LogEntryType
Auto Trait Implementations§
impl Freeze for LogEntryType
impl RefUnwindSafe for LogEntryType
impl Send for LogEntryType
impl Sync for LogEntryType
impl Unpin for LogEntryType
impl UnsafeUnpin for LogEntryType
impl UnwindSafe for LogEntryType
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