Struct spack::commands::config::CompilerPaths
source · pub struct CompilerPaths {
pub cc: Option<PathBuf>,
pub cxx: Option<PathBuf>,
pub f77: Option<PathBuf>,
pub fc: Option<PathBuf>,
}Expand description
Paths to specific executables this compiler owns.
Fields§
§cc: Option<PathBuf>Path to the C compiler.
cxx: Option<PathBuf>Path to the C++ compiler.
f77: Option<PathBuf>Path to the FORTRAN 77 compiler.
fc: Option<PathBuf>Path to the fortran 90 compiler.
Trait Implementations§
source§impl Clone for CompilerPaths
impl Clone for CompilerPaths
source§fn clone(&self) -> CompilerPaths
fn clone(&self) -> CompilerPaths
Returns a copy 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 CompilerPaths
impl Debug for CompilerPaths
source§impl<'de> Deserialize<'de> for CompilerPaths
impl<'de> Deserialize<'de> for CompilerPaths
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for CompilerPaths
impl Display for CompilerPaths
Auto Trait Implementations§
impl RefUnwindSafe for CompilerPaths
impl Send for CompilerPaths
impl Sync for CompilerPaths
impl Unpin for CompilerPaths
impl UnwindSafe for CompilerPaths
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