Enum wasm_wrapper_gen_shared::MacroError [] [src]

pub enum MacroError {
    InvalidItemKind {
        kind: ItemKind,
    },
    InvalidArgument {
        arg: FnArg,
    },
    UnhandledArgumentType {
        ty: Ty,
    },
    UnexpectedMultiTokenMacro {
        tokens: Vec<TokenTree>,
    },
    UnexpectedSingleToken {
        token: Token,
    },
    UnexpectedEndOfMacroInvocation {
        tokens: Tokens,
    },
    UnexpectedReparseFailure {
        err_msg: String,
    },
}

Variants

Fields of InvalidItemKind

Fields of InvalidArgument

Fields of UnhandledArgumentType

Fields of UnexpectedMultiTokenMacro

Fields of UnexpectedSingleToken

Fields of UnexpectedEndOfMacroInvocation

Fields of UnexpectedReparseFailure

Trait Implementations

impl Debug for MacroError
[src]

[src]

Formats the value using the given formatter.

impl Fail for MacroError
[src]

[src]

Returns a reference to the underlying cause of this failure, if it is an error that wraps other errors. Read more

[src]

Returns a reference to the Backtrace carried by this failure, if it carries one. Read more

[src]

Provide context for this failure. Read more

[src]

Wrap this failure in a compatibility wrapper that implements std::error::Error. Read more

[src]

Returns the "root cause" of this Fail - the last value in the cause change which does not return an underlying cause. Read more

impl Display for MacroError
[src]

[src]

Formats the value using the given formatter. Read more