Open
Description
https://rust-lang.github.io/rust-clippy/master/#disallowed_method
Doc on All Clippy Lints shows the example of how to use it with methods from the standard library, but no example on how to use it with user-defined types neither if this is possible to use with methods of user-defined types/imported items.
When I tried to use this with nightly-2021-07-06
in rust-toolchain I managed to get it to work with std::vec::Vec::append, but no luck with user-defined methods.