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 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 ParallelText
impl Debug for ParallelText
Source§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 FromStr for ParallelText
impl FromStr for ParallelText
Source§impl PartialEq for ParallelText
impl PartialEq for ParallelText
impl Copy for ParallelText
impl Eq for ParallelText
impl StructuralPartialEq for ParallelText
Auto Trait Implementations§
impl Freeze for ParallelText
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