pub trait IAkObjectInfoMethods: IAkObjectInfo {
Show 13 methods
// Provided methods
fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>) { ... }
fn set_c_ptr(self, c_ptr: impl Into<IntPtr>) { ... }
fn finalize(self) { ... }
fn dispose(self) { ... }
fn set_obj_id(self, value: impl Into<u32>) { ... }
fn get_obj_id(self) -> u32 { ... }
fn set_parent_id(self, value: impl Into<u32>) { ... }
fn get_parent_id(self) -> u32 { ... }
fn set_i_depth(self, value: impl Into<i32>) { ... }
fn get_i_depth(self) -> i32 { ... }
fn clear(self) { ... }
fn clone(self, other: impl Into<AkObjectInfo>) { ... }
fn ctor_2(self) { ... }
}Provided Methods§
Sourcefn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)
fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)
.ctor(::unity::IntPtr, bool) overload
Sourcefn set_obj_id(self, value: impl Into<u32>)
fn set_obj_id(self, value: impl Into<u32>)
set_objID(u32) overload
Sourcefn get_obj_id(self) -> u32
fn get_obj_id(self) -> u32
get_objID() overload
Sourcefn set_parent_id(self, value: impl Into<u32>)
fn set_parent_id(self, value: impl Into<u32>)
set_parentID(u32) overload
Sourcefn get_parent_id(self) -> u32
fn get_parent_id(self) -> u32
get_parentID() overload
Sourcefn set_i_depth(self, value: impl Into<i32>)
fn set_i_depth(self, value: impl Into<i32>)
set_iDepth(i32) overload
Sourcefn get_i_depth(self) -> i32
fn get_i_depth(self) -> i32
get_iDepth() overload
Sourcefn clone(self, other: impl Into<AkObjectInfo>)
fn clone(self, other: impl Into<AkObjectInfo>)
Clone(crate::root::akobjectinfo::AkObjectInfo) 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: IAkObjectInfo> IAkObjectInfoMethods for __T
Available on crate feature
root-akobjectinfo only.