pub trait IScriptGlobalOptionsMethods: IScriptGlobalOptions {
// Provided methods
fn ctor(self) { ... }
fn get_custom_converters(self) -> CustomConvertersCollection { ... }
fn set_custom_converters(self, value: impl Into<CustomConvertersCollection>) { ... }
fn get_platform(self) -> IPlatformAccessor { ... }
fn set_platform(self, value: impl Into<IPlatformAccessor>) { ... }
fn get_rethrow_exception_nested(self) -> bool { ... }
fn set_rethrow_exception_nested(self, value: impl Into<bool>) { ... }
}Provided Methods§
Sourcefn get_custom_converters(self) -> CustomConvertersCollection
fn get_custom_converters(self) -> CustomConvertersCollection
get_CustomConverters() overload
Sourcefn set_custom_converters(self, value: impl Into<CustomConvertersCollection>)
fn set_custom_converters(self, value: impl Into<CustomConvertersCollection>)
set_CustomConverters(crate::moon_sharp::interpreter::interop::customconverterscollection::CustomConvertersCollection) overload
Sourcefn get_platform(self) -> IPlatformAccessor
fn get_platform(self) -> IPlatformAccessor
get_Platform() overload
Sourcefn set_platform(self, value: impl Into<IPlatformAccessor>)
fn set_platform(self, value: impl Into<IPlatformAccessor>)
set_Platform(crate::moon_sharp::interpreter::platforms::iplatformaccessor::IPlatformAccessor) overload
Sourcefn get_rethrow_exception_nested(self) -> bool
fn get_rethrow_exception_nested(self) -> bool
get_RethrowExceptionNested() overload
Sourcefn set_rethrow_exception_nested(self, value: impl Into<bool>)
fn set_rethrow_exception_nested(self, value: impl Into<bool>)
set_RethrowExceptionNested(bool) overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IScriptGlobalOptions> IScriptGlobalOptionsMethods for __T
Available on crate feature
moon_sharp-interpreter-scriptglobaloptions only.