pub trait File: Sized {
    fn read<'a>(data: impl Into<Cow<'a, [u8]>>) -> Result<Self, Error>;
}
Expand description

A file that can be read from ironworks.

Required Methods

Build an instance of this file from the raw byte representation.

Implementations on Foreign Types

Implementors