[][src]Struct ink_lang_ir::InkTest

pub struct InkTest {
    pub item_fn: ItemFn,
}

The ink! test with all required information.

Fields

item_fn: ItemFn

The function which was annotated.

Implementations

impl InkTest[src]

pub fn new(attr: TokenStream2, input: TokenStream2) -> Result<Self, Error>[src]

Returns Ok if the trait matches all requirements for an ink! trait definition.

Trait Implementations

impl TryFrom<ItemFn> for InkTest[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for InkTest

impl !Send for InkTest

impl !Sync for InkTest

impl Unpin for InkTest

impl UnwindSafe for InkTest

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> Same<T> for T

type Output = T

Should always be Self

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.