pub enum TlaError {
InputFileParseError {
parse_tree: Tree,
error_lines: Vec<usize>,
},
OutputFileParseError {
output_tree: Tree,
output: String,
},
InvalidTranslationError {
input_tree: Tree,
output_tree: Tree,
output: String,
first_diff: String,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TlaError
impl RefUnwindSafe for TlaError
impl Send for TlaError
impl Sync for TlaError
impl Unpin for TlaError
impl UnwindSafe for TlaError
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