Macro error_chain::error_chain_processed [] [src]

macro_rules! error_chain_processed {
    (
        types {}
        $( $rest: tt )*
    ) => { ... };
    (
        types {
            $error_name:ident, $error_kind_name:ident, $result_name:ident;
        }
        $( $rest: tt )*
    ) => { ... };
    (
        types {
            $error_name:ident, $error_kind_name:ident;
        }

        links {
            $( $link_error_path:path, $link_variant:ident $(, #[$meta_links:meta])*; ) *
        }

        foreign_links {
            $( $foreign_link_error_path:path, $foreign_link_variant:ident $(, #[$meta_foreign_links:meta])*; )*
        }

        errors {
            $( $error_chunks:tt ) *
        }

    ) => { ... };
}

Prefer to use error_chain instead of this macro.