pub enum ParallelText {
End = 0,
BeginPrincipal = 1,
BeginSupplementary = 2,
BeginJapanesePhonetic = 3,
BeginChinesePhonetic = 4,
EndPhonetic = 5,
}
Expand description
Valid parameter values to the function PTX
.
Variants§
End = 0
End of parallel texts.
BeginPrincipal = 1
Beginning of a string of principal parallel text.
BeginSupplementary = 2
Beginning of a string of supplementary parallel text.
BeginJapanesePhonetic = 3
Beginning of a string of supplementary Japanese phonetic annotation
BeginChinesePhonetic = 4
Beginning of a string of supplementary Chinese phonetic annotation
EndPhonetic = 5
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 for ParallelText
impl PartialEq 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 ==
.impl Copy for ParallelText
impl Eq for ParallelText
impl StructuralEq for ParallelText
impl StructuralPartialEq for ParallelText
Auto Trait Implementations§
impl RefUnwindSafe for ParallelText
impl Send for ParallelText
impl Sync for ParallelText
impl Unpin for ParallelText
impl UnwindSafe for ParallelText
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