pub enum AstErrorKind {
TokenizeError {
message: String,
},
UnexpectedEof,
ExpectedIdentifier,
InvalidColumnProperty,
InvalidPolicy,
UnexpectedToken {
expected: String,
},
UnsupportedToken,
MultipleExpressionsWithoutBraces,
UnrecognizedType,
UnsupportedAstNode {
node_type: String,
},
EmptyPipeline,
}Variants§
TokenizeError
UnexpectedEof
ExpectedIdentifier
InvalidColumnProperty
InvalidPolicy
UnexpectedToken
UnsupportedToken
MultipleExpressionsWithoutBraces
UnrecognizedType
UnsupportedAstNode
EmptyPipeline
Trait Implementations§
Source§impl Clone for AstErrorKind
impl Clone for AstErrorKind
Source§fn clone(&self) -> AstErrorKind
fn clone(&self) -> AstErrorKind
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 AstErrorKind
impl Debug for AstErrorKind
Source§impl PartialEq for AstErrorKind
impl PartialEq for AstErrorKind
impl StructuralPartialEq for AstErrorKind
Auto Trait Implementations§
impl Freeze for AstErrorKind
impl RefUnwindSafe for AstErrorKind
impl Send for AstErrorKind
impl Sync for AstErrorKind
impl Unpin for AstErrorKind
impl UnsafeUnpin for AstErrorKind
impl UnwindSafe for AstErrorKind
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