[][src]Struct finch::platform::linux::Amd64

pub struct Amd64 { /* fields omitted */ }

A Platform for Linux on Amd64.

Methods

impl Amd64[src]

pub fn standard_load(
    filename: &str,
    base_path: Option<PathBuf>
) -> Result<Driver>
[src]

Create a standard driver, set up with a Amd64 Platform, and everything initialized.

pub fn intrinsic(state: State, intrinsic: &Intrinsic) -> Result<Vec<Successor>>[src]

Handle an intrinsic instruction.

pub fn syscall(state: State) -> Result<Vec<Successor>>[src]

Handle a system call.

Trait Implementations

impl Clone for Amd64[src]

impl Debug for Amd64[src]

impl Eq for Amd64[src]

impl PartialEq<Amd64> for Amd64[src]

impl Platform for Amd64[src]

impl StructuralEq for Amd64[src]

impl StructuralPartialEq for Amd64[src]

Auto Trait Implementations

impl !RefUnwindSafe for Amd64

impl !Send for Amd64

impl !Sync for Amd64

impl Unpin for Amd64

impl UnwindSafe for Amd64

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.