pub trait FnMeta {
    fn borrows() -> TypeIds
    where
        Self: Sized
; fn borrow_muts() -> TypeIds
    where
        Self: Sized
; }
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