pub enum LogEntryTypes {
Event,
Sel,
Multiple,
Oem,
Cxl,
UnsupportedValue,
}Variants§
Event
The log contains Redfish-defined messages.
Sel
The log contains legacy IPMI System Event Log (SEL) entries.
Multiple
The log contains multiple log entry types and, therefore, the log service cannot guarantee a single entry type.
Oem
The log contains entries in an OEM-defined format.
Cxl
The log contains CXL log entries.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for LogEntryTypes
impl Clone for LogEntryTypes
Source§fn clone(&self) -> LogEntryTypes
fn clone(&self) -> LogEntryTypes
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 LogEntryTypes
impl Debug for LogEntryTypes
Source§impl<'de> Deserialize<'de> for LogEntryTypes
impl<'de> Deserialize<'de> for LogEntryTypes
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 LogEntryTypes
impl PartialEq for LogEntryTypes
Source§impl Serialize for LogEntryTypes
impl Serialize for LogEntryTypes
Source§impl ToSnakeCase for LogEntryTypes
impl ToSnakeCase for LogEntryTypes
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 LogEntryTypes
impl Eq for LogEntryTypes
impl StructuralPartialEq for LogEntryTypes
Auto Trait Implementations§
impl Freeze for LogEntryTypes
impl RefUnwindSafe for LogEntryTypes
impl Send for LogEntryTypes
impl Sync for LogEntryTypes
impl Unpin for LogEntryTypes
impl UnsafeUnpin for LogEntryTypes
impl UnwindSafe for LogEntryTypes
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