[][src]Struct nc::types::rseq_cs_t

#[repr(C)]
pub struct rseq_cs_t {
    pub version: u32,
    pub flags: u32,
    pub start_ip: u64,
    pub post_commit_offset: u64,
    pub abort_ip: u64,
}

struct rseq_cs is aligned on 4 * 8 bytes to ensure it is always contained within a single cache-line. It is usually declared as link-time constant data.

Fields

version: u32

Version of this structure.

flags: u32

enum rseq_cs_flags

start_ip: u64post_commit_offset: u64

Offset from start_ip.

abort_ip: u64

Auto Trait Implementations

impl Unpin for rseq_cs_t

impl Send for rseq_cs_t

impl Sync for rseq_cs_t

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]