pub enum Output {
None,
Char(char),
Dead(char),
}Expand description
What one position produces at one shift level.
Variants§
None
Nothing. The position is unused at this level.
Char(char)
A character, inserted directly.
Dead(char)
A dead key, held until the next character decides what it becomes.
Carries the spacing form of the mark — '¨', not the combining
U+0308 — because that is what gets emitted when the composition fails or
the user types the mark twice.
Trait Implementations§
impl Copy for Output
impl Eq for Output
impl StructuralPartialEq for Output
Auto Trait Implementations§
impl Freeze for Output
impl RefUnwindSafe for Output
impl Send for Output
impl Sync for Output
impl Unpin for Output
impl UnsafeUnpin for Output
impl UnwindSafe for Output
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