pub enum Status<T> {
Complete(T),
Partial,
}
Expand description
The result of a successful parse pass.
Complete
is used when the buffer contained the complete value.
Partial
is used when parsing did not reach the end of the expected value,
but no invalid data was found.
Variants
Complete(T)
The completed result.
Partial
A partial result.
Implementations
sourceimpl<T> Status<T>
impl<T> Status<T>
sourcepub fn is_complete(&self) -> bool
pub fn is_complete(&self) -> bool
Convenience method to check if status is complete.
sourcepub fn is_partial(&self) -> bool
pub fn is_partial(&self) -> bool
Convenience method to check if status is partial.
Trait Implementations
impl<T: Copy> Copy for Status<T>
impl<T: Eq> Eq for Status<T>
impl<T> StructuralEq for Status<T>
impl<T> StructuralPartialEq for Status<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for Status<T> where
T: RefUnwindSafe,
impl<T> Send for Status<T> where
T: Send,
impl<T> Sync for Status<T> where
T: Sync,
impl<T> Unpin for Status<T> where
T: Unpin,
impl<T> UnwindSafe for Status<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more