Struct pdb::MemberFunctionType [] [src]

pub struct MemberFunctionType {
    pub return_type: TypeIndex,
    pub class_type: TypeIndex,
    pub this_pointer_type: Option<TypeIndex>,
    pub attributes: FunctionAttributes,
    pub parameter_count: u16,
    pub argument_list: TypeIndex,
    pub this_adjustment: u32,
}

The information parsed from a type record with kind LF_MFUNCTION.

Fields

Trait Implementations

impl Debug for MemberFunctionType
[src]

[src]

Formats the value using the given formatter.

impl Copy for MemberFunctionType
[src]

impl Clone for MemberFunctionType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for MemberFunctionType
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for MemberFunctionType
[src]