nject-macro 0.5.0

Zero cost dependency injection macros
Documentation
1
2
3
4
5
/// Combines 2 errors together.
pub fn combine(mut err: syn::Error, other: syn::Error) -> syn::Error {
    err.combine(other);
    err
}