pub struct CompilerSettings {
pub assembler_settings: AssemblerSettings,
pub optimization_settings: OptimizationSettings,
pub lifter_settings: LifterSettings,
}Expand description
Compiler configuration (IR + codegen) for a profile.
Fields§
§assembler_settings: AssemblerSettingsAssembler settings.
optimization_settings: OptimizationSettingsOptimization settings.
lifter_settings: LifterSettingsIR lifter settings.
Trait Implementations§
Source§impl Clone for CompilerSettings
impl Clone for CompilerSettings
Source§fn clone(&self) -> CompilerSettings
fn clone(&self) -> CompilerSettings
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 CompilerSettings
impl Debug for CompilerSettings
Source§impl<'de> Deserialize<'de> for CompilerSettings
impl<'de> Deserialize<'de> for CompilerSettings
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 CompilerSettings
impl RefUnwindSafe for CompilerSettings
impl Send for CompilerSettings
impl Sync for CompilerSettings
impl Unpin for CompilerSettings
impl UnwindSafe for CompilerSettings
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