Skip to main content

IRuntimeScopeBlockMethods

Trait IRuntimeScopeBlockMethods 

Source
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§

Source

fn get_from(self) -> i32

get_From() overload

Source

fn set_from(self, value: impl Into<i32>)

set_From(i32) overload

Source

fn get_to(self) -> i32

get_To() overload

Source

fn set_to(self, value: impl Into<i32>)

set_To(i32) overload

Source

fn get_to_inclusive(self) -> i32

get_ToInclusive() overload

Source

fn set_to_inclusive(self, value: impl Into<i32>)

set_ToInclusive(i32) overload

Source

fn to_string(self) -> Il2CppString

ToString() overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IRuntimeScopeBlock> IRuntimeScopeBlockMethods for __T

Available on crate feature moon_sharp-interpreter-execution-runtimescopeblock only.