pub enum WordPushResult {
Continue,
InvalidHangul,
NonHangul,
}Expand description
The result of attempting to push a character into the HangulWordComposer.
Variants§
Continue
The character was successfully pushed and composition can continue.
InvalidHangul
The character could not be pushed because it would result in an invalid Hangul syllable.
NonHangul
The character was not pushed because it is not a Hangul character.
Trait Implementations§
Source§impl Debug for WordPushResult
impl Debug for WordPushResult
impl Eq for WordPushResult
Source§impl PartialEq for WordPushResult
impl PartialEq for WordPushResult
Source§fn eq(&self, other: &WordPushResult) -> bool
fn eq(&self, other: &WordPushResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WordPushResult
Auto Trait Implementations§
impl Freeze for WordPushResult
impl RefUnwindSafe for WordPushResult
impl Send for WordPushResult
impl Sync for WordPushResult
impl Unpin for WordPushResult
impl UnsafeUnpin for WordPushResult
impl UnwindSafe for WordPushResult
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