pub trait Saveable {
// Required methods
fn save(internal: &mut Internal, settings: &Settings) -> Self
where Self: Sized;
fn is_vintage_story(&self) -> bool;
}Required Methods§
Sourcefn save(internal: &mut Internal, settings: &Settings) -> Selfwhere
Self: Sized,
fn save(internal: &mut Internal, settings: &Settings) -> Selfwhere
Self: Sized,
Save the given Internal to a schematic.