pub struct LicmFeatureFlags {
pub speculative: bool,
pub sink_enabled: bool,
pub hoist_loads: bool,
pub hoist_pure_calls: bool,
}Expand description
LICM feature flags
Fields§
§speculative: bool§sink_enabled: bool§hoist_loads: bool§hoist_pure_calls: boolTrait Implementations§
Source§impl Clone for LicmFeatureFlags
impl Clone for LicmFeatureFlags
Source§fn clone(&self) -> LicmFeatureFlags
fn clone(&self) -> LicmFeatureFlags
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 LicmFeatureFlags
impl Debug for LicmFeatureFlags
Source§impl Default for LicmFeatureFlags
impl Default for LicmFeatureFlags
Source§fn default() -> LicmFeatureFlags
fn default() -> LicmFeatureFlags
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LicmFeatureFlags
impl RefUnwindSafe for LicmFeatureFlags
impl Send for LicmFeatureFlags
impl Sync for LicmFeatureFlags
impl Unpin for LicmFeatureFlags
impl UnsafeUnpin for LicmFeatureFlags
impl UnwindSafe for LicmFeatureFlags
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