pub enum Translation {
AmericanKingJames,
AmericanStandard,
EnglishRevised,
KingJames,
Custom {
name: String,
path: String,
},
}Expand description
Different Bible Translations provided by https://openbible.com/
Variants§
AmericanKingJames
American King James Version
AmericanStandard
American Standard Version
EnglishRevised
English Revised Version
KingJames
King James Version
Custom
For custom translations,
each line must be a verse formatted as: Book Chapter:Verse Content
See bible_translations/ for examples
name is strictly for display purposes
note: other translations are included in the binary at compile time, but custom translations are read from the filesystem at runtime
Trait Implementations§
Source§impl Clone for Translation
impl Clone for Translation
Source§fn clone(&self) -> Translation
fn clone(&self) -> Translation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Translation
impl Debug for Translation
Source§impl Default for Translation
Available on crate features akjv or asv or erv or kjv only.
impl Default for Translation
Available on crate features
akjv or asv or erv or kjv only.Source§impl Display for Translation
impl Display for Translation
Source§impl PartialEq for Translation
impl PartialEq for Translation
impl Eq for Translation
impl StructuralPartialEq for Translation
Auto Trait Implementations§
impl Freeze for Translation
impl RefUnwindSafe for Translation
impl Send for Translation
impl Sync for Translation
impl Unpin for Translation
impl UnwindSafe for Translation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more