pub trait IRangeData_DirOffsetsMethods: IRangeData_DirOffsets {
// Provided methods
fn ctor(self) { ... }
fn add_center(
self,
name: impl Into<Il2CppString>,
target: impl Into<RangeData_Targets>,
) { ... }
fn get_center(self, name: impl Into<Il2CppString>) -> RangeData_Targets { ... }
fn get_offest(
self,
dir: impl Into<Dir_Type>,
) -> Dictionary_2<Il2CppString, List_1<RangeData_Offset>> { ... }
fn clear(self) { ... }
}Provided Methods§
Sourcefn add_center(
self,
name: impl Into<Il2CppString>,
target: impl Into<RangeData_Targets>,
)
fn add_center( self, name: impl Into<Il2CppString>, target: impl Into<RangeData_Targets>, )
AddCenter(::unity::Il2CppString, crate::app::rangedata::RangeData_Targets) overload
Sourcefn get_center(self, name: impl Into<Il2CppString>) -> RangeData_Targets
fn get_center(self, name: impl Into<Il2CppString>) -> RangeData_Targets
GetCenter(::unity::Il2CppString) overload
Sourcefn get_offest(
self,
dir: impl Into<Dir_Type>,
) -> Dictionary_2<Il2CppString, List_1<RangeData_Offset>>
fn get_offest( self, dir: impl Into<Dir_Type>, ) -> Dictionary_2<Il2CppString, List_1<RangeData_Offset>>
GetOffest(crate::app::dir_2::Dir_Type) 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: IRangeData_DirOffsets> IRangeData_DirOffsetsMethods for __T
Available on crate feature
app-rangedata only.