pub trait RemoveUndefinedImports {
    fn remove_undefined_imports<F>(&mut self, is_defined: &F) -> bool
    where
        F: Fn(&Ident) -> bool
; }
Expand description

Remove any methods, statics, &c, that reference types that are not defined.

Required Methods

Implementations on Foreign Types

Implementors