pub enum ProcessResult {
Continue,
Break,
}Expand description
The process result dictates whether it’s possible to fit more text or not.
Variants§
Continue
Continue means it’s possible to process more text
Break
Break means that there is no more room for text and further processing should be avoided
Trait Implementations§
Source§impl Clone for ProcessResult
impl Clone for ProcessResult
Source§fn clone(&self) -> ProcessResult
fn clone(&self) -> ProcessResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ProcessResult
Source§impl Debug for ProcessResult
impl Debug for ProcessResult
Source§impl PartialEq for ProcessResult
impl PartialEq for ProcessResult
Source§fn eq(&self, other: &ProcessResult) -> bool
fn eq(&self, other: &ProcessResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProcessResult
Auto Trait Implementations§
impl Freeze for ProcessResult
impl RefUnwindSafe for ProcessResult
impl Send for ProcessResult
impl Sync for ProcessResult
impl Unpin for ProcessResult
impl UnsafeUnpin for ProcessResult
impl UnwindSafe for ProcessResult
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