1 2 3 4 5 6 7 8
use std::fmt; use super::Asset; /// A loaded file containing raw data. pub trait File: Asset + fmt::Display + fmt::Debug { // To return the contents of this file as a string. use fmt::Display }