Skip to main content

Saveable

Trait Saveable 

Source
pub trait Saveable {
    // Required method
    fn base_name() -> &'static str;
}
Expand description

Trait that maps a row type to its on-disk file name (sans extension).

Required Methods§

Source

fn base_name() -> &'static str

Base name for the .fst/.bin file pair on disk.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§