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
sourceimpl HeaderInfo
impl HeaderInfo
Trait Implementations
sourceimpl Clone for HeaderInfo
impl Clone for HeaderInfo
sourcefn clone(&self) -> HeaderInfo
fn clone(&self) -> HeaderInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for HeaderInfo
impl Debug for HeaderInfo
sourceimpl Hash for HeaderInfo
impl Hash for HeaderInfo
sourceimpl Ord for HeaderInfo
impl Ord for HeaderInfo
sourcefn cmp(&self, other: &HeaderInfo) -> Ordering
fn cmp(&self, other: &HeaderInfo) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<HeaderInfo> for HeaderInfo
impl PartialEq<HeaderInfo> for HeaderInfo
sourcefn eq(&self, other: &HeaderInfo) -> bool
fn eq(&self, other: &HeaderInfo) -> bool
sourceimpl PartialOrd<HeaderInfo> for HeaderInfo
impl PartialOrd<HeaderInfo> for HeaderInfo
sourcefn partial_cmp(&self, other: &HeaderInfo) -> Option<Ordering>
fn partial_cmp(&self, other: &HeaderInfo) -> Option<Ordering>
1.0.0 · sourcefn 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 moreimpl Eq for HeaderInfo
impl StructuralEq for HeaderInfo
impl StructuralPartialEq for HeaderInfo
Auto Trait Implementations
impl RefUnwindSafe for HeaderInfo
impl Send for HeaderInfo
impl Sync for HeaderInfo
impl Unpin for HeaderInfo
impl UnwindSafe for HeaderInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more