Struct cargo::util::machine_message::ArtifactProfile
source · [−]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: bool
Trait Implementations
sourceimpl Serialize for ArtifactProfile
impl Serialize for ArtifactProfile
Auto Trait Implementations
impl RefUnwindSafe for ArtifactProfile
impl Send for ArtifactProfile
impl Sync for ArtifactProfile
impl Unpin for ArtifactProfile
impl UnwindSafe for ArtifactProfile
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more