pub trait FnMetaDyn {
    fn borrows(&self) -> TypeIds;
    fn borrow_muts(&self) -> TypeIds;
}
Expand description

Any type that tracks metadata about a function.

Required Methods

Returns the TypeIds of borrowed arguments.

Returns the TypeIds of mutably borrowed arguments.

Implementations on Foreign Types

Implementors