Struct intel_tsx_rtm::HardwareMemoryTransactionResult []

pub struct HardwareMemoryTransactionResult { /* fields omitted */ }

This structure wraps the results of an execution of a transaction.

Methods

impl HardwareMemoryTransactionResult

Returns an empty set of flags.

Returns the set containing all flags.

Returns the raw value of the flags currently stored.

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

Returns true if no flags are currently stored.

Returns true if all flags are currently set.

Returns true if there are flags common to both self and other.

Returns true all of the flags in other are contained within self.

Inserts the specified flags in-place.

Removes the specified flags in-place.

Toggles the specified flags in-place.

Inserts or removes the specified flags depending on the passed value.

impl HardwareMemoryTransactionResult
[src]

TransactionIsSuccessful: u8 = 0

Return this from TransactionCallback if a transaction is successful.

TransactionFailedDueToBusyLock: u8 = 255

Return this from TransactionCallback if a transaction fails due to a busy lock. Unofficial, see source code comments in https://github.com/gcc-mirror/gcc/blob/da8dff89fa9398f04b107e388cb706517ced9505/libitm/config/x86/target.h.

[src]

Returns Some(status_code) if explicitly aborted. status_code will never be zero. Transaction was explicitly aborted with _xabort(). The parameter passed to _xabort is available with _XABORT_CODE(status).

[src]

Transaction can be retried.

[src]

Transaction abort due to a memory conflict with another thread. A re-try of this transaction is likely to succeed. Ideally use a back off.

[src]

Capacity of the cache was exceeded. A re-try of this transaction might succeed, but it's not likely.

[src]

Transaction aborted due to a debug trap. A re-try of this transaction is likely to succeed if the debug trap is removed.

[src]

Transaction abort in an inner nested transaction. Transactions inside transactions are a failure of logic, and so it is highly unlikely that a retry would succeed.

Trait Implementations

impl Copy for HardwareMemoryTransactionResult

impl PartialEq for HardwareMemoryTransactionResult

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for HardwareMemoryTransactionResult

impl Clone for HardwareMemoryTransactionResult

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialOrd for HardwareMemoryTransactionResult

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

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

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

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

impl Ord for HardwareMemoryTransactionResult

This method returns an Ordering between self and other. Read more

1.22.0
[src]

Compares and returns the maximum of two values. Read more

1.22.0
[src]

Compares and returns the minimum of two values. Read more

impl Hash for HardwareMemoryTransactionResult

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for HardwareMemoryTransactionResult

Formats the value using the given formatter.

impl Binary for HardwareMemoryTransactionResult

Formats the value using the given formatter.

impl Octal for HardwareMemoryTransactionResult

Formats the value using the given formatter.

impl LowerHex for HardwareMemoryTransactionResult

Formats the value using the given formatter.

impl UpperHex for HardwareMemoryTransactionResult

Formats the value using the given formatter.

impl BitOr for HardwareMemoryTransactionResult

The resulting type after applying the | operator.

Returns the union of the two sets of flags.

impl BitOrAssign for HardwareMemoryTransactionResult

Adds the set of flags.

impl BitXor for HardwareMemoryTransactionResult

The resulting type after applying the ^ operator.

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign for HardwareMemoryTransactionResult

Toggles the set of flags.

impl BitAnd for HardwareMemoryTransactionResult

The resulting type after applying the & operator.

Returns the intersection between the two sets of flags.

impl BitAndAssign for HardwareMemoryTransactionResult

Disables all flags disabled in the set.

impl Sub for HardwareMemoryTransactionResult

The resulting type after applying the - operator.

Returns the set difference of the two sets of flags.

impl SubAssign for HardwareMemoryTransactionResult

Disables all flags enabled in the set.

impl Not for HardwareMemoryTransactionResult

The resulting type after applying the ! operator.

Returns the complement of this set of flags.

impl Extend<HardwareMemoryTransactionResult> for HardwareMemoryTransactionResult

Extends a collection with the contents of an iterator. Read more

impl FromIterator<HardwareMemoryTransactionResult> for HardwareMemoryTransactionResult

Creates a value from an iterator. Read more