pub trait LanguagePackSource {
// Required methods
fn source(&self) -> LanguagePackRuntimeSource;
fn load(&self) -> Result<LanguageStore, String>;
}Required Methods§
fn source(&self) -> LanguagePackRuntimeSource
fn load(&self) -> Result<LanguageStore, String>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".