pub enum Syntax_Error {
EXPECTED_IDENTIFIER,
EXPECTED_SNIPPET(&'static str),
UNEXPECTED_END,
CHECKSUM_WRONG_LENGTH,
NESTED_CODEGEN_NOT_SUPPORTED,
CODEGEN_END_WITHOUT_MATCHING_BEGIN,
}Variants§
EXPECTED_IDENTIFIER
EXPECTED_SNIPPET(&'static str)
UNEXPECTED_END
CHECKSUM_WRONG_LENGTH
NESTED_CODEGEN_NOT_SUPPORTED
CODEGEN_END_WITHOUT_MATCHING_BEGIN
Trait Implementations§
Source§impl Clone for Syntax_Error
impl Clone for Syntax_Error
Source§fn clone(&self) -> Syntax_Error
fn clone(&self) -> Syntax_Error
Returns a duplicate 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 Syntax_Error
impl Debug for Syntax_Error
Source§impl Display for Syntax_Error
impl Display for Syntax_Error
Source§impl PartialEq for Syntax_Error
impl PartialEq for Syntax_Error
impl Eq for Syntax_Error
impl StructuralPartialEq for Syntax_Error
Auto Trait Implementations§
impl Freeze for Syntax_Error
impl RefUnwindSafe for Syntax_Error
impl Send for Syntax_Error
impl Sync for Syntax_Error
impl Unpin for Syntax_Error
impl UnwindSafe for Syntax_Error
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