pub trait IRuntimeScopeBlockMethods: IRuntimeScopeBlock {
// Provided methods
fn get_from(self) -> i32 { ... }
fn set_from(self, value: impl Into<i32>) { ... }
fn get_to(self) -> i32 { ... }
fn set_to(self, value: impl Into<i32>) { ... }
fn get_to_inclusive(self) -> i32 { ... }
fn set_to_inclusive(self, value: impl Into<i32>) { ... }
fn to_string(self) -> Il2CppString { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_to_inclusive(self) -> i32
fn get_to_inclusive(self) -> i32
get_ToInclusive() overload
Sourcefn set_to_inclusive(self, value: impl Into<i32>)
fn set_to_inclusive(self, value: impl Into<i32>)
set_ToInclusive(i32) overload
Sourcefn to_string(self) -> Il2CppString
fn to_string(self) -> Il2CppString
ToString() 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: IRuntimeScopeBlock> IRuntimeScopeBlockMethods for __T
Available on crate feature
moon_sharp-interpreter-execution-runtimescopeblock only.