pub trait DataAccessDyn {
    fn borrows(&self) -> SmallVec<[TypeId; 8]>;
    fn borrow_muts(&self) -> SmallVec<[TypeId; 8]>;
}
Expand description

Data accessed by this type.

Required Methods

Returns the TypeIds of borrowed arguments.

Returns the TypeIds of mutably borrowed arguments.

Implementations on Foreign Types

Implementors