pub enum Language {
C,
FortranFree,
FortranFixed,
}
Expand description
Language format for parsing
Variants§
C
C/C++ language with #pragma omp
FortranFree
Fortran free-form with !$OMP sentinel
FortranFixed
Fortran fixed-form with !$OMP or C$OMP in columns 1-6
Trait Implementations§
impl Copy for Language
impl Eq for Language
impl StructuralPartialEq for Language
Auto Trait Implementations§
impl Freeze for Language
impl RefUnwindSafe for Language
impl Send for Language
impl Sync for Language
impl Unpin for Language
impl UnwindSafe for Language
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