pub struct ArtifactProfile {
pub opt_level: &'static str,
pub debuginfo: Option<u32>,
pub debug_assertions: bool,
pub overflow_checks: bool,
pub test: bool,
}Expand description
This is different from the regular Profile to maintain backwards
compatibility (in particular, test is no longer in Profile, but we
still want it to be included here).
Fields§
§opt_level: &'static str§debuginfo: Option<u32>§debug_assertions: bool§overflow_checks: bool§test: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for ArtifactProfile
impl RefUnwindSafe for ArtifactProfile
impl Send for ArtifactProfile
impl Sync for ArtifactProfile
impl Unpin for ArtifactProfile
impl UnsafeUnpin for ArtifactProfile
impl UnwindSafe for ArtifactProfile
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