Struct intel_tsx_rtm::HardwareMemoryTransactionResult
[−]
pub struct HardwareMemoryTransactionResult { /* fields omitted */ }
This structure wraps the results of an execution of a transaction.
Methods
impl HardwareMemoryTransactionResult
fn empty() -> HardwareMemoryTransactionResult
Returns an empty set of flags.
fn all() -> HardwareMemoryTransactionResult
Returns the set containing all flags.
fn bits(&self) -> u32
Returns the raw value of the flags currently stored.
fn from_bits(bits: u32) -> Option<HardwareMemoryTransactionResult>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
fn from_bits_truncate(bits: u32) -> HardwareMemoryTransactionResult
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
fn is_empty(&self) -> bool
Returns true
if no flags are currently stored.
fn is_all(&self) -> bool
Returns true
if all flags are currently set.
fn intersects(&self, other: HardwareMemoryTransactionResult) -> bool
Returns true
if there are flags common to both self
and other
.
fn contains(&self, other: HardwareMemoryTransactionResult) -> bool
Returns true
all of the flags in other
are contained within self
.
fn insert(&mut self, other: HardwareMemoryTransactionResult)
Inserts the specified flags in-place.
fn remove(&mut self, other: HardwareMemoryTransactionResult)
Removes the specified flags in-place.
fn toggle(&mut self, other: HardwareMemoryTransactionResult)
Toggles the specified flags in-place.
fn set(&mut self, other: HardwareMemoryTransactionResult, value: bool)
Inserts or removes the specified flags depending on the passed value.
impl HardwareMemoryTransactionResult
[src]
const TransactionIsSuccessful: u8
TransactionIsSuccessful: u8 = 0
Return this from TransactionCallback
if a transaction is successful.
const TransactionFailedDueToBusyLock: u8
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.
fn transaction_was_explicitly_aborted_by_callback(self) -> Option<u8>
[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)
.
fn transaction_retry_is_possible(self) -> bool
[src]
Transaction can be retried.
fn transaction_was_aborted_due_to_conflict_with_another_thread(self) -> bool
[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.
fn transaction_was_aborted_due_to_using_too_much_memory(self) -> bool
[src]
Capacity of the cache was exceeded. A re-try of this transaction might succeed, but it's not likely.
fn transaction_was_aborted_due_to_a_debug_trap(self) -> bool
[src]
Transaction aborted due to a debug trap. A re-try of this transaction is likely to succeed if the debug trap is removed.
fn transaction_was_aborted_due_to_issuing_a_nested_transaction(self) -> bool
[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
fn eq(&self, __arg_0: &HardwareMemoryTransactionResult) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &HardwareMemoryTransactionResult) -> bool
This method tests for !=
.
impl Eq for HardwareMemoryTransactionResult
impl Clone for HardwareMemoryTransactionResult
fn clone(&self) -> HardwareMemoryTransactionResult
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialOrd for HardwareMemoryTransactionResult
fn partial_cmp(
&self,
__arg_0: &HardwareMemoryTransactionResult
) -> Option<Ordering>
&self,
__arg_0: &HardwareMemoryTransactionResult
) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, __arg_0: &HardwareMemoryTransactionResult) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, __arg_0: &HardwareMemoryTransactionResult) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, __arg_0: &HardwareMemoryTransactionResult) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, __arg_0: &HardwareMemoryTransactionResult) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Ord for HardwareMemoryTransactionResult
fn cmp(&self, __arg_0: &HardwareMemoryTransactionResult) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.22.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.22.0[src]
Compares and returns the minimum of two values. Read more
impl Hash for HardwareMemoryTransactionResult
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Debug for HardwareMemoryTransactionResult
impl Binary for HardwareMemoryTransactionResult
impl Octal for HardwareMemoryTransactionResult
impl LowerHex for HardwareMemoryTransactionResult
impl UpperHex for HardwareMemoryTransactionResult
impl BitOr for HardwareMemoryTransactionResult
type Output = HardwareMemoryTransactionResult
The resulting type after applying the |
operator.
fn bitor(
self,
other: HardwareMemoryTransactionResult
) -> HardwareMemoryTransactionResult
self,
other: HardwareMemoryTransactionResult
) -> HardwareMemoryTransactionResult
Returns the union of the two sets of flags.
impl BitOrAssign for HardwareMemoryTransactionResult
fn bitor_assign(&mut self, other: HardwareMemoryTransactionResult)
Adds the set of flags.
impl BitXor for HardwareMemoryTransactionResult
type Output = HardwareMemoryTransactionResult
The resulting type after applying the ^
operator.
fn bitxor(
self,
other: HardwareMemoryTransactionResult
) -> HardwareMemoryTransactionResult
self,
other: HardwareMemoryTransactionResult
) -> HardwareMemoryTransactionResult
Returns the left flags, but with all the right flags toggled.
impl BitXorAssign for HardwareMemoryTransactionResult
fn bitxor_assign(&mut self, other: HardwareMemoryTransactionResult)
Toggles the set of flags.
impl BitAnd for HardwareMemoryTransactionResult
type Output = HardwareMemoryTransactionResult
The resulting type after applying the &
operator.
fn bitand(
self,
other: HardwareMemoryTransactionResult
) -> HardwareMemoryTransactionResult
self,
other: HardwareMemoryTransactionResult
) -> HardwareMemoryTransactionResult
Returns the intersection between the two sets of flags.
impl BitAndAssign for HardwareMemoryTransactionResult
fn bitand_assign(&mut self, other: HardwareMemoryTransactionResult)
Disables all flags disabled in the set.
impl Sub for HardwareMemoryTransactionResult
type Output = HardwareMemoryTransactionResult
The resulting type after applying the -
operator.
fn sub(
self,
other: HardwareMemoryTransactionResult
) -> HardwareMemoryTransactionResult
self,
other: HardwareMemoryTransactionResult
) -> HardwareMemoryTransactionResult
Returns the set difference of the two sets of flags.
impl SubAssign for HardwareMemoryTransactionResult
fn sub_assign(&mut self, other: HardwareMemoryTransactionResult)
Disables all flags enabled in the set.
impl Not for HardwareMemoryTransactionResult
type Output = HardwareMemoryTransactionResult
The resulting type after applying the !
operator.
fn not(self) -> HardwareMemoryTransactionResult
Returns the complement of this set of flags.
impl Extend<HardwareMemoryTransactionResult> for HardwareMemoryTransactionResult
fn extend<T: IntoIterator<Item = HardwareMemoryTransactionResult>>(
&mut self,
iterator: T
)
&mut self,
iterator: T
)
Extends a collection with the contents of an iterator. Read more
impl FromIterator<HardwareMemoryTransactionResult> for HardwareMemoryTransactionResult
fn from_iter<T: IntoIterator<Item = HardwareMemoryTransactionResult>>(
iterator: T
) -> HardwareMemoryTransactionResult
iterator: T
) -> HardwareMemoryTransactionResult
Creates a value from an iterator. Read more