pub trait DiskLoadable {
    // Required method
    fn from_file(path: &str) -> Self;
}
Expand description

Represents a value which can be loaded from a file.

Required Methods§

source

fn from_file(path: &str) -> Self

Creates a ROM file by loading the contents of a file.

Object Safety§

This trait is not object safe.

Implementors§