#[repr(u32)]pub enum ParseStatus {
PARSE_NULL = 0,
PARSE_OK = 1,
PARSE_INCOMPLETE = 2,
PARSE_ERROR = 3,
PARSE_EOF = 4,
}
Variants§
Trait Implementations§
Source§impl Clone for ParseStatus
impl Clone for ParseStatus
Source§fn clone(&self) -> ParseStatus
fn clone(&self) -> ParseStatus
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ParseStatus
impl Debug for ParseStatus
impl Copy for ParseStatus
Auto Trait Implementations§
impl Freeze for ParseStatus
impl RefUnwindSafe for ParseStatus
impl Send for ParseStatus
impl Sync for ParseStatus
impl Unpin for ParseStatus
impl UnwindSafe for ParseStatus
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