Skip to main content

PerProcessOptions

Struct PerProcessOptions 

Source
pub struct PerProcessOptions {
Show 37 fields pub per_isolate: PerIsolateOptions, pub title: String, pub trace_event_categories: String, pub trace_event_file_pattern: String, pub v8_thread_pool_size: i64, pub zero_fill_all_buffers: bool, pub debug_arraybuffer_allocations: bool, pub disable_proto: String, pub node_snapshot: bool, pub snapshot_blob: String, pub security_reverts: Vec<String>, pub print_bash_completion: bool, pub print_help: bool, pub print_v8_help: bool, pub print_version: bool, pub experimental_sea_config: String, pub run: String, pub icu_data_dir: String, pub openssl_config: String, pub tls_cipher_list: String, pub secure_heap: i64, pub secure_heap_min: i64, pub ssl_openssl_cert_store: bool, pub use_openssl_ca: bool, pub use_system_ca: bool, pub use_bundled_ca: bool, pub enable_fips_crypto: bool, pub force_fips_crypto: bool, pub openssl_legacy_provider: bool, pub openssl_shared_config: bool, pub disable_wasm_trap_handler: bool, pub report_on_fatalerror: bool, pub report_compact: bool, pub report_directory: String, pub report_filename: String, pub use_largepages: String, pub trace_sigint: bool,
}

Fields§

§per_isolate: PerIsolateOptions§title: String§trace_event_categories: String§trace_event_file_pattern: String§v8_thread_pool_size: i64§zero_fill_all_buffers: bool§debug_arraybuffer_allocations: bool§disable_proto: String§node_snapshot: bool§snapshot_blob: String§security_reverts: Vec<String>§print_bash_completion: bool§print_help: bool§print_v8_help: bool§print_version: bool§experimental_sea_config: String§run: String§icu_data_dir: String§openssl_config: String§tls_cipher_list: String§secure_heap: i64§secure_heap_min: i64§ssl_openssl_cert_store: bool§use_openssl_ca: bool§use_system_ca: bool§use_bundled_ca: bool§enable_fips_crypto: bool§force_fips_crypto: bool§openssl_legacy_provider: bool§openssl_shared_config: bool§disable_wasm_trap_handler: bool§report_on_fatalerror: bool§report_compact: bool§report_directory: String§report_filename: String§use_largepages: String§trace_sigint: bool

Implementations§

Source§

impl PerProcessOptions

Source

pub fn check_options(&mut self, errors: &mut Vec<String>)

Trait Implementations§

Source§

impl Clone for PerProcessOptions

Source§

fn clone(&self) -> PerProcessOptions

Returns a duplicate 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 Debug for PerProcessOptions

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for PerProcessOptions

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

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, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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.