[][src]Struct falcon::loader::FunctionEntry

pub struct FunctionEntry { /* fields omitted */ }

A declared entry point for a function.

Methods

impl FunctionEntry[src]

pub fn new(address: u64, name: Option<String>) -> FunctionEntry[src]

Create a new FunctionEntry.

If no name is provided: sup_{:X} will be used to name the function.

pub fn address(&self) -> u64[src]

Get the address for this FunctionEntry.

pub fn name(&self) -> Option<&str>[src]

Get the name for this FunctionEntry.

Trait Implementations

impl Clone for FunctionEntry[src]

impl Debug for FunctionEntry[src]

impl Display for FunctionEntry[src]

impl PartialEq<FunctionEntry> for FunctionEntry[src]

impl StructuralPartialEq for FunctionEntry[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> ToString for T where
    T: Display + ?Sized
[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> 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.