pub unsafe trait BorrowInfo {
    fn borrow_info(info: &mut Vec<TypeInfo, Global>);
}
Expand description

Explains to a workload which storage are borrowed by a system.

Required Methods

This information is used during workload creation to determine which systems can run in parallel.

A borrow error might happen if the information is not correct.

Implementations on Foreign Types

Implementors