Struct RuntimeOptions

Source
#[repr(C)]
pub struct RuntimeOptions { /* private fields */ }

Implementations§

Source§

impl RuntimeOptions

Source

pub fn new() -> UniquePtr<Self>

Source

pub fn container(&self) -> &str

Source

pub fn container_mut<'a>(self: Pin<&'a mut Self>) -> Pin<&'a mut CxxString>

Source

pub fn unknown_processing(&self) -> UnknownProcessingOptions

Source

pub fn unknown_processing_mut<'a>( self: Pin<&'a mut Self>, ) -> &'a mut UnknownProcessingOptions

Source

pub fn enable_missing_attribute_errors(&self) -> bool

Source

pub fn enable_missing_attribute_errors_mut<'a>( self: Pin<&'a mut Self>, ) -> &'a mut bool

Source

pub fn enable_timestamp_duration_overflow_errors(&self) -> bool

Source

pub fn enable_timestamp_duration_overflow_errors_mut<'a>( self: Pin<&'a mut Self>, ) -> &'a mut bool

Source

pub fn short_circuiting(&self) -> bool

Source

pub fn short_circuiting_mut<'a>(self: Pin<&'a mut Self>) -> &'a mut bool

Source

pub fn enable_comprehension(&self) -> bool

Source

pub fn enable_comprehension_mut<'a>(self: Pin<&'a mut Self>) -> &'a mut bool

Source

pub fn comprehension_max_iterations(&self) -> i32

Source

pub fn comprehension_max_iterations_mut<'a>( self: Pin<&'a mut Self>, ) -> &'a mut i32

Source

pub fn enable_comprehension_list_append(&self) -> bool

Source

pub fn enable_comprehension_list_append_mut<'a>( self: Pin<&'a mut Self>, ) -> &'a mut bool

Source

pub fn enable_regex(&self) -> bool

Source

pub fn enable_regex_mut<'a>(self: Pin<&'a mut Self>) -> &'a mut bool

Source

pub fn regex_max_program_size(&self) -> i32

Source

pub fn regex_max_program_size_mut<'a>(self: Pin<&'a mut Self>) -> &'a mut i32

Source

pub fn enable_string_conversion(&self) -> bool

Source

pub fn enable_string_conversion_mut<'a>(self: Pin<&'a mut Self>) -> &'a mut bool

Source

pub fn enable_string_concat(&self) -> bool

Source

pub fn enable_string_concat_mut<'a>(self: Pin<&'a mut Self>) -> &'a mut bool

Source

pub fn enable_list_concat(&self) -> bool

Source

pub fn enable_list_concat_mut<'a>(self: Pin<&'a mut Self>) -> &'a mut bool

Source

pub fn enable_list_contains(&self) -> bool

Source

pub fn enable_list_contains_mut<'a>(self: Pin<&'a mut Self>) -> &'a mut bool

Source

pub fn fail_on_warnings(&self) -> bool

Source

pub fn fail_on_warnings_mut<'a>(self: Pin<&'a mut Self>) -> &'a mut bool

Source

pub fn enable_qualified_type_identifiers(&self) -> bool

Source

pub fn enable_qualified_type_identifiers_mut<'a>( self: Pin<&'a mut Self>, ) -> &'a mut bool

Source

pub fn enable_heterogeneous_equality(&self) -> bool

Source

pub fn enable_heterogeneous_equality_mut<'a>( self: Pin<&'a mut Self>, ) -> &'a mut bool

Source

pub fn enable_empty_wrapper_null_unboxing(&self) -> bool

Source

pub fn enable_empty_wrapper_null_unboxing_mut<'a>( self: Pin<&'a mut Self>, ) -> &'a mut bool

Source

pub fn enable_lazy_bind_initialization(&self) -> bool

Source

pub fn enable_lazy_bind_initialization_mut<'a>( self: Pin<&'a mut Self>, ) -> &'a mut bool

Source

pub fn max_recursion_depth(&self) -> i32

Source

pub fn max_recursion_depth_mut<'a>(self: Pin<&'a mut Self>) -> &'a mut i32

Source

pub fn enable_recursive_tracing(&self) -> bool

Source

pub fn enable_recursive_tracing_mut<'a>(self: Pin<&'a mut Self>) -> &'a mut bool

Source

pub fn enable_fast_builtins(&self) -> bool

Source

pub fn enable_fast_builtins_mut<'a>(self: Pin<&'a mut Self>) -> &'a mut bool

Trait Implementations§

Source§

impl ExternType for RuntimeOptions

Source§

type Kind = Opaque

Source§

type Id

A type-level representation of the type’s C++ namespace and type name. Read more
Source§

impl Send for RuntimeOptions

Source§

impl Sync for RuntimeOptions

Source§

impl UniquePtrTarget for RuntimeOptions

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> 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, 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.