Struct simics::api::simulator::embed::InitArg

source ·
pub struct InitArg(init_arg_t);
Expand description

Initialization argument

Tuple Fields§

§0: init_arg_t

Implementations§

source§

impl InitArg

source

pub fn boolean<S>(name: S, enabled: bool) -> Result<Self>
where S: AsRef<str>,

Construct a named argument which takes a boolean value

source

pub fn string<S>(name: S, value: S) -> Result<Self>
where S: AsRef<str>,

Construct a named argumet which takes a string value

source

pub fn last() -> Self

Construct a terminating argument, which must be last in the init arg list

source§

impl InitArg

source

pub fn batch_mode(value: bool) -> Result<Self>

Implementation for an argument which takes a boolean value

source§

impl InitArg

source

pub fn deprecation_level<T>(value: T) -> Result<Self>
where T: ToString,

Implementation for an argument which takes a string value

source§

impl InitArg

source

pub fn expire_time<T>(value: T) -> Result<Self>
where T: ToString,

Implementation for an argument which takes a string value

source§

impl InitArg

source

pub fn gui_mode<T>(value: T) -> Result<Self>
where T: ToString,

Implementation for an argument which takes a string value

source§

impl InitArg

source

pub fn fail_on_warnings(value: bool) -> Result<Self>

Implementation for an argument which takes a boolean value

source§

impl InitArg

source

pub fn license_file<T>(value: T) -> Result<Self>
where T: ToString,

Implementation for an argument which takes a string value

source§

impl InitArg

source

pub fn log_enable(value: bool) -> Result<Self>

Implementation for an argument which takes a boolean value

source§

impl InitArg

source

pub fn log_file<T>(value: T) -> Result<Self>
where T: ToString,

Implementation for an argument which takes a string value

source§

impl InitArg

source

pub fn no_settings(value: bool) -> Result<Self>

Implementation for an argument which takes a boolean value

source§

impl InitArg

source

pub fn no_windows(value: bool) -> Result<Self>

Implementation for an argument which takes a boolean value

source§

impl InitArg

source

pub fn python_verbose(value: bool) -> Result<Self>

Implementation for an argument which takes a boolean value

source§

impl InitArg

source

pub fn project<T>(value: T) -> Result<Self>
where T: ToString,

Implementation for an argument which takes a string value

source§

impl InitArg

source

pub fn quiet(value: bool) -> Result<Self>

Implementation for an argument which takes a boolean value

source§

impl InitArg

source

pub fn script_trace(value: bool) -> Result<Self>

Implementation for an argument which takes a boolean value

source§

impl InitArg

source

pub fn verbose(value: bool) -> Result<Self>

Implementation for an argument which takes a boolean value

source§

impl InitArg

source

pub fn allow_license_gui(value: bool) -> Result<Self>

Implementation for an argument which takes a boolean value

source§

impl InitArg

source

pub fn alt_settings_dir<T>(value: T) -> Result<Self>
where T: ToString,

Implementation for an argument which takes a string value

source§

impl InitArg

source

pub fn application_mode<T>(value: T) -> Result<Self>
where T: ToString,

Implementation for an argument which takes a string value

source§

impl InitArg

source

pub fn check_ifaces(value: bool) -> Result<Self>

Implementation for an argument which takes a boolean value

source§

impl InitArg

source

pub fn disable_dstc(value: bool) -> Result<Self>

Implementation for an argument which takes a boolean value

source§

impl InitArg

source

pub fn disable_istc(value: bool) -> Result<Self>

Implementation for an argument which takes a boolean value

source§

impl InitArg

source

pub fn eclipse_params<T>(value: T) -> Result<Self>
where T: ToString,

Implementation for an argument which takes a string value

source§

impl InitArg

source

pub fn package_list<T>(value: T) -> Result<Self>
where T: ToString,

Implementation for an argument which takes a string value

source§

impl InitArg

source

pub fn py3k_warnings(value: bool) -> Result<Self>

Implementation for an argument which takes a boolean value

source§

impl InitArg

source

pub fn sign_module(value: bool) -> Result<Self>

Implementation for an argument which takes a boolean value

source§

impl InitArg

source

pub fn as_py_module(value: bool) -> Result<Self>

Implementation for an argument which takes a boolean value

source§

impl InitArg

source

pub fn py_import_all(value: bool) -> Result<Self>

Implementation for an argument which takes a boolean value

source§

impl InitArg

source

pub fn use_module_cache(value: bool) -> Result<Self>

Implementation for an argument which takes a boolean value

Trait Implementations§

source§

impl Clone for InitArg

source§

fn clone(&self) -> InitArg

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl From<InitArg> for init_arg_t

source§

fn from(value: InitArg) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.