pub trait File: Sized {
// Required method
fn read<'a>(data: impl Into<Cow<'a, [u8]>>) -> Result<Self, Error>;
}
Expand description
A file that can be read from ironworks.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
Implementors§
impl File for EquipmentDeformerParameter
Available on crate feature
eqdp
only.impl File for ExcelData
Available on crate feature
exd
only.impl File for ExcelHeader
Available on crate feature
exh
only.impl File for ExcelList
Available on crate feature
exl
only.impl File for ModelContainer
Available on crate feature
mdl
only.impl File for Material
Available on crate feature
mtrl
only.impl File for PreBoneDeformer
Available on crate feature
pbd
only.impl File for SkeletonBinary
Available on crate feature
sklb
only.impl File for Texture
Available on crate feature
tex
only.