pub struct ObscureConstants {
pub probability: u32,
pub iterations: u32,
pub bitwidths: BitWidths,
pub ethnicities: SsaOrigins,
}Expand description
Statically obscure constants, this does not prevent rematerialization at runtime. Use the SuppressConstants pass in tandem with this!
Fields§
§probability: u32§iterations: u32§bitwidths: BitWidths§ethnicities: SsaOriginsTrait Implementations§
Source§impl Clone for ObscureConstants
impl Clone for ObscureConstants
Source§fn clone(&self) -> ObscureConstants
fn clone(&self) -> ObscureConstants
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 ObscureConstants
impl Debug for ObscureConstants
Source§impl<'de> Deserialize<'de> for ObscureConstants
impl<'de> Deserialize<'de> for ObscureConstants
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 ObscureConstants
impl RefUnwindSafe for ObscureConstants
impl Send for ObscureConstants
impl Sync for ObscureConstants
impl Unpin for ObscureConstants
impl UnwindSafe for ObscureConstants
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