#[repr(u8)]pub enum Mark {
None = 0,
Hat = 1,
Breve = 2,
Horn = 3,
Dash = 4,
Raw = 5,
}Expand description
Represents a Vietnamese diacritic mark (marks that change the vowel/consonant).
Variants§
None = 0
No diacritic.
Hat = 1
Circumflex (Â, Ê, Ô).
Breve = 2
Breve (Ă).
Horn = 3
Horn (Ư, Ơ).
Dash = 4
Dash (Đ).
Raw = 5
Special mark for raw character restoration.
Trait Implementations§
impl Copy for Mark
impl Eq for Mark
impl StructuralPartialEq for Mark
Auto Trait Implementations§
impl Freeze for Mark
impl RefUnwindSafe for Mark
impl Send for Mark
impl Sync for Mark
impl Unpin for Mark
impl UnsafeUnpin for Mark
impl UnwindSafe for Mark
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