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
sourceimpl<T: PartialEq> PartialEq<Status<T>> for Status<T>
impl<T: PartialEq> PartialEq<Status<T>> for Status<T>
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
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for Twhere
T: Clone,
impl<T> ToOwned for Twhere
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more