Struct trace_recorder_parser::streaming::header_info::HeaderInfo
source · pub struct HeaderInfo {
pub endianness: Endianness,
pub format_version: u16,
pub kernel_version: KernelVersion,
pub kernel_port: KernelPortIdentity,
pub options: u32,
pub irq_priority_order: u32,
pub num_cores: u32,
pub isr_tail_chaining_threshold: u32,
pub platform_cfg: String,
pub platform_cfg_version: PlatformCfgVersion,
}
Fields§
§endianness: Endianness
§format_version: u16
§kernel_version: KernelVersion
§kernel_port: KernelPortIdentity
§options: u32
§irq_priority_order: u32
§num_cores: u32
§isr_tail_chaining_threshold: u32
§platform_cfg: String
§platform_cfg_version: PlatformCfgVersion
Implementations§
source§impl HeaderInfo
impl HeaderInfo
Trait Implementations§
source§impl Clone for HeaderInfo
impl Clone for HeaderInfo
source§fn clone(&self) -> HeaderInfo
fn clone(&self) -> HeaderInfo
Returns a copy 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 HeaderInfo
impl Debug for HeaderInfo
source§impl Hash for HeaderInfo
impl Hash for HeaderInfo
source§impl Ord for HeaderInfo
impl Ord for HeaderInfo
source§fn cmp(&self, other: &HeaderInfo) -> Ordering
fn cmp(&self, other: &HeaderInfo) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<HeaderInfo> for HeaderInfo
impl PartialEq<HeaderInfo> for HeaderInfo
source§fn eq(&self, other: &HeaderInfo) -> bool
fn eq(&self, other: &HeaderInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<HeaderInfo> for HeaderInfo
impl PartialOrd<HeaderInfo> for HeaderInfo
source§fn partial_cmp(&self, other: &HeaderInfo) -> Option<Ordering>
fn partial_cmp(&self, other: &HeaderInfo) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more