pub trait FnMeta {
    fn borrows() -> TypeIds;
    fn borrow_muts() -> 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