pub struct Flags {
pub frame_pointer: bool,
pub red_zone: bool,
}Expand description
What the command line says about a frame, as opposed to what the machine says.
Fields§
§frame_pointer: boolWhether every function keeps a frame pointer, which -fno-omit-frame-pointer asks for.
red_zone: boolWhether the red zone may be used, which -mno-red-zone and every kernel turns off.
Trait Implementations§
impl Copy for Flags
impl Eq for Flags
impl StructuralPartialEq for Flags
Auto Trait Implementations§
impl Freeze for Flags
impl RefUnwindSafe for Flags
impl Send for Flags
impl Sync for Flags
impl Unpin for Flags
impl UnsafeUnpin for Flags
impl UnwindSafe for Flags
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