pub struct ProgramOptions {
pub safe_mode: bool,
pub reentrant: bool,
pub main_flag: bool,
}Fields§
§safe_mode: bool§reentrant: bool§main_flag: boolTrait Implementations§
Source§impl Clone for ProgramOptions
impl Clone for ProgramOptions
Source§fn clone(&self) -> ProgramOptions
fn clone(&self) -> ProgramOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProgramOptions
impl Debug for ProgramOptions
Source§impl Default for ProgramOptions
impl Default for ProgramOptions
Source§fn default() -> ProgramOptions
fn default() -> ProgramOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProgramOptions
impl RefUnwindSafe for ProgramOptions
impl Send for ProgramOptions
impl Sync for ProgramOptions
impl Unpin for ProgramOptions
impl UnsafeUnpin for ProgramOptions
impl UnwindSafe for ProgramOptions
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