[][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 RefUnwindSafe for Report

impl Send for Report

impl Sync for Report

impl Unpin for Report

impl UnwindSafe for Report

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> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?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.