pub enum ParallelText {
End,
BeginPrincipal,
BeginSupplementary,
BeginJapanesePhonetic,
BeginChinesePhonetic,
EndPhonetic,
}
Expand description
Valid parameter values to the function PTX
.
Variants§
End
End of parallel texts.
BeginPrincipal
Beginning of a string of principal parallel text.
BeginSupplementary
Beginning of a string of supplementary parallel text.
BeginJapanesePhonetic
Beginning of a string of supplementary Japanese phonetic annotation
BeginChinesePhonetic
Beginning of a string of supplementary Chinese phonetic annotation
EndPhonetic
End of a string of supplementary phonetic annotations
Trait Implementations§
source§impl Clone for ParallelText
impl Clone for ParallelText
source§fn clone(&self) -> ParallelText
fn clone(&self) -> ParallelText
Returns a copy 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 Default for ParallelText
impl Default for ParallelText
source§fn default() -> ParallelText
fn default() -> ParallelText
Returns the “default value” for a type. Read more
source§impl PartialEq<ParallelText> for ParallelText
impl PartialEq<ParallelText> for ParallelText
source§fn eq(&self, other: &ParallelText) -> bool
fn eq(&self, other: &ParallelText) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.