pub enum DslError {
FileNotFound(String),
AmbiguousFile(String),
ParseError(String),
LimitExceeded(String),
}Expand description
DSL parse/compile/file errors returned by Dsl::compile and Dsl::write.
Variants§
FileNotFound(String)
AmbiguousFile(String)
ParseError(String)
LimitExceeded(String)
A compile-time limit was exceeded (path_id, word_id, store_id, or data size).
Trait Implementations§
impl StructuralPartialEq for DslError
Auto Trait Implementations§
impl Freeze for DslError
impl RefUnwindSafe for DslError
impl Send for DslError
impl Sync for DslError
impl Unpin for DslError
impl UnsafeUnpin for DslError
impl UnwindSafe for DslError
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