[][src]Struct portus::Report

pub struct Report {
    pub program_uid: u32,
    // some fields omitted
}

Contains the values of the pre-defined Report struct from the fold function. Use get_field to query its values using the names defined in the fold function.

Fields

program_uid: u32

Methods

impl Report[src]

pub fn get_field(&self, field: &str, sc: &Scope) -> Result<u64>[src]

Uses the Scope returned by lang::compile (or install) to query the Report for its values.

Auto Trait Implementations

impl Send for Report

impl Sync for Report

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]