pub trait MachineIdentifiers {
// Required methods
fn osis_identifier(&self) -> String;
fn usfm_identifier(&self) -> String;
}Expand description
Canonical OSIS and USFM serialization for Bible reference values.
Required Methods§
Sourcefn osis_identifier(&self) -> String
fn osis_identifier(&self) -> String
Encode this value as a case-sensitive OSIS identifier.
Sourcefn usfm_identifier(&self) -> String
fn usfm_identifier(&self) -> String
Encode this value as a case-sensitive USFM identifier.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".