Struct android_build::DebugInfo
source · pub struct DebugInfo {
pub line_numbers: bool,
pub variables: bool,
pub source_files: bool,
}
Expand description
Debug information to include in the output of a javac
build.
The default value for this struct is for everything to be true
,
meaning all debug information is included.
This is only relevant if you set the debug_info
field in JavaBuild
.
Fields§
§line_numbers: bool
§variables: bool
§source_files: bool
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DebugInfo
impl RefUnwindSafe for DebugInfo
impl Send for DebugInfo
impl Sync for DebugInfo
impl Unpin for DebugInfo
impl UnwindSafe for DebugInfo
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