pub struct MinimizeConfig {
pub include_debug_libs: bool,
pub include_debug_symbols: bool,
pub enable_symlinks: bool,
pub use_winsysroot_style: bool,
pub preserve_ms_arch_notation: bool,
pub splat_output: PathBuf,
pub copy: bool,
pub minimize_output: Option<PathBuf>,
pub map: PathBuf,
pub target: String,
pub manifest_path: PathBuf,
pub preserve_strace: bool,
}Fields§
§include_debug_libs: bool§include_debug_symbols: bool§enable_symlinks: bool§use_winsysroot_style: bool§preserve_ms_arch_notation: bool§splat_output: PathBuf§copy: bool§minimize_output: Option<PathBuf>§map: PathBuf§target: String§manifest_path: PathBuf§preserve_strace: boolAuto Trait Implementations§
impl Freeze for MinimizeConfig
impl RefUnwindSafe for MinimizeConfig
impl Send for MinimizeConfig
impl Sync for MinimizeConfig
impl Unpin for MinimizeConfig
impl UnwindSafe for MinimizeConfig
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more