Struct tracelogging::Opcode

source ·
#[repr(C)]
pub struct Opcode(_);
Expand description

Indicates special semantics to be used by the event decoder for grouping and organizing events, e.g. for activities.

For example, the Opcode::Start opcode indicates the beginning of an activity and the Opcode::Stop indicates the end of an activity. Most events use Opcode::Info (0).

Implementations§

source§

impl Opcode

source

pub const fn from_int(value: u8) -> Opcode

Returns an opcode with the specified value.

source

pub const fn as_int(self) -> u8

Returns the integer value of this opcode.

source

pub const Info: Opcode = _

Normal event. The event may set activity_id if it is part of an activity.

source

pub const Start: Opcode = _

Event indicates the beginning of an activity. The event should set related_id to the id of the parent activity and should set activity_id to the id of the newly-started activity. All subsequent events that use the new activity_id will be considered as part of this activity, up to the corresponding Stop event.

source

pub const Stop: Opcode = _

Event indicates the end of an activity. The event should set activity_id to the id of the activity that is ending and should use the same level and keyword as were used for the corresponding Start event.

source

pub const DC_Start: Opcode = _

Data Collection Start event

source

pub const DC_Stop: Opcode = _

Data Collection Stop event

source

pub const Extension: Opcode = _

Extension event

source

pub const Reply: Opcode = _

Reply event

source

pub const Resume: Opcode = _

Resume event

source

pub const Suspend: Opcode = _

Suspend event

source

pub const Send: Opcode = _

Message Send event

source

pub const Receive: Opcode = _

Message Receive event

source

pub const ReservedOpcode241: Opcode = _

Reserved for future definition by Microsoft

source

pub const ReservedOpcode242: Opcode = _

Reserved for future definition by Microsoft

source

pub const ReservedOpcode243: Opcode = _

Reserved for future definition by Microsoft

source

pub const ReservedOpcode244: Opcode = _

Reserved for future definition by Microsoft

source

pub const ReservedOpcode245: Opcode = _

Reserved for future definition by Microsoft

source

pub const ReservedOpcode246: Opcode = _

Reserved for future definition by Microsoft

source

pub const ReservedOpcode247: Opcode = _

Reserved for future definition by Microsoft

source

pub const ReservedOpcode248: Opcode = _

Reserved for future definition by Microsoft

source

pub const ReservedOpcode249: Opcode = _

Reserved for future definition by Microsoft

source

pub const ReservedOpcode250: Opcode = _

Reserved for future definition by Microsoft

source

pub const ReservedOpcode251: Opcode = _

Reserved for future definition by Microsoft

source

pub const ReservedOpcode252: Opcode = _

Reserved for future definition by Microsoft

source

pub const ReservedOpcode253: Opcode = _

Reserved for future definition by Microsoft

source

pub const ReservedOpcode254: Opcode = _

Reserved for future definition by Microsoft

source

pub const ReservedOpcode255: Opcode = _

Reserved for future definition by Microsoft

Trait Implementations§

source§

impl Clone for Opcode

source§

fn clone(&self) -> Opcode

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Opcode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Opcode

source§

fn default() -> Opcode

Returns the “default value” for a type. Read more
source§

impl Display for Opcode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Opcode> for u8

source§

fn from(val: Opcode) -> Self

Converts to this type from the input type.
source§

impl From<u8> for Opcode

source§

fn from(val: u8) -> Self

Converts to this type from the input type.
source§

impl Hash for Opcode

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for Opcode

source§

fn cmp(&self, other: &Opcode) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl PartialEq<Opcode> for Opcode

source§

fn eq(&self, other: &Opcode) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<Opcode> for Opcode

source§

fn partial_cmp(&self, other: &Opcode) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Copy for Opcode

source§

impl Eq for Opcode

source§

impl StructuralEq for Opcode

source§

impl StructuralPartialEq for Opcode

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.