#[non_exhaustive]pub enum FileType {
DIMACS,
NNF,
AIGER,
}
Expand description
File types
Every file type is associated with a parser and (possibly multiple) extensions
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
DIMACS
DIMACS CNF/SAT formats
Extensions: .cnf
, .sat
, .dimacs
NNF
c2d negation normal form
Extensions: .nnf
AIGER
AIGER
Extensions: .aag
, .aig
Implementations§
Trait Implementations§
impl Copy for FileType
impl Eq for FileType
impl StructuralPartialEq for FileType
Auto Trait Implementations§
impl Freeze for FileType
impl RefUnwindSafe for FileType
impl Send for FileType
impl Sync for FileType
impl Unpin for FileType
impl UnwindSafe for FileType
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