pub enum BlockPopStatus {
PoppedAndNonEmpty(Jamo),
PoppedAndEmpty(Jamo),
None,
}Expand description
The status of popping a Jamo letter from a Hangul syllable block composer.
Variants§
PoppedAndNonEmpty(Jamo)
A Jamo letter was popped and the block still has letters remaining.
PoppedAndEmpty(Jamo)
A Jamo letter was popped and the block is now empty.
None
The block is already empty; no letters to pop.
Trait Implementations§
Source§impl Debug for BlockPopStatus
impl Debug for BlockPopStatus
impl Eq for BlockPopStatus
Source§impl PartialEq for BlockPopStatus
impl PartialEq for BlockPopStatus
Source§fn eq(&self, other: &BlockPopStatus) -> bool
fn eq(&self, other: &BlockPopStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BlockPopStatus
Auto Trait Implementations§
impl Freeze for BlockPopStatus
impl RefUnwindSafe for BlockPopStatus
impl Send for BlockPopStatus
impl Sync for BlockPopStatus
impl Unpin for BlockPopStatus
impl UnsafeUnpin for BlockPopStatus
impl UnwindSafe for BlockPopStatus
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