Enum falcon::analysis::calling_convention::ReturnAddressType[][src]

pub enum ReturnAddressType {
    Register(Scalar),
    Stack(usize),
}

The return type for a function.

Variants

Functions return by loading an address from a register.

Functions return by loading an address from the stack.

The offset to the return address at function call/entry is given.

Methods

impl ReturnAddressType
[src]

Trait Implementations

impl Clone for ReturnAddressType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ReturnAddressType
[src]

Formats the value using the given formatter. Read more

impl Eq for ReturnAddressType
[src]

impl PartialEq for ReturnAddressType
[src]

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

This method tests for !=.

Auto Trait Implementations