asomers / mockall

A powerful mock object library for Rust
Apache License 2.0
1.45k stars 61 forks source link

Add compatibility with auto_enums #590

Closed asomers closed 2 months ago

asomers commented 2 months ago

Make Mockall compatible with the use of the auto_enums crate for functions that use RPIT, like this:

    #[auto_enum(Future)]
    fn foo() -> impl Future<Output=()> {
        ...
    }