pub struct CompilationOptions {
pub directory: PathBuf,
pub program: String,
pub arguments: Vec<String>,
pub output: PathBuf,
}Fields§
§directory: PathBuf§program: String§arguments: Vec<String>§output: PathBufTrait Implementations§
Source§impl Clone for CompilationOptions
impl Clone for CompilationOptions
Source§fn clone(&self) -> CompilationOptions
fn clone(&self) -> CompilationOptions
Returns a duplicate 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 CompilationOptions
impl Debug for CompilationOptions
Source§impl<'de> Deserialize<'de> for CompilationOptions
impl<'de> Deserialize<'de> for CompilationOptions
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
Auto Trait Implementations§
impl Freeze for CompilationOptions
impl RefUnwindSafe for CompilationOptions
impl Send for CompilationOptions
impl Sync for CompilationOptions
impl Unpin for CompilationOptions
impl UnwindSafe for CompilationOptions
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