ux-dx 0.2.1

3D Graphics Primitives for Angular Rust
Documentation
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
}