[][src]Struct CCODE::_FPO_DATA

#[repr(C)]pub struct _FPO_DATA {
    pub ulOffStart: DWORD,
    pub cbProcSize: DWORD,
    pub cdwLocals: DWORD,
    pub cdwParams: WORD,
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2], u8>,
}

Fields

ulOffStart: DWORDcbProcSize: DWORDcdwLocals: DWORDcdwParams: WORD_bitfield_1: __BindgenBitfieldUnit<[u8; 2], u8>

Implementations

impl _FPO_DATA[src]

pub fn cbProlog(&self) -> WORD[src]

pub fn set_cbProlog(&mut self, val: WORD)[src]

pub fn cbRegs(&self) -> WORD[src]

pub fn set_cbRegs(&mut self, val: WORD)[src]

pub fn fHasSEH(&self) -> WORD[src]

pub fn set_fHasSEH(&mut self, val: WORD)[src]

pub fn fUseBP(&self) -> WORD[src]

pub fn set_fUseBP(&mut self, val: WORD)[src]

pub fn reserved(&self) -> WORD[src]

pub fn set_reserved(&mut self, val: WORD)[src]

pub fn cbFrame(&self) -> WORD[src]

pub fn set_cbFrame(&mut self, val: WORD)[src]

pub fn new_bitfield_1(
    cbProlog: WORD,
    cbRegs: WORD,
    fHasSEH: WORD,
    fUseBP: WORD,
    reserved: WORD,
    cbFrame: WORD
) -> __BindgenBitfieldUnit<[u8; 2], u8>
[src]

Trait Implementations

impl Clone for _FPO_DATA[src]

impl Copy for _FPO_DATA[src]

impl Debug for _FPO_DATA[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> 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.