pub trait IStructHeaderMethods: IStructHeader {
// Provided methods
fn get_param(self) -> List_1<StructHeader_Param> { ... }
fn set_param(self, value: impl Into<List_1<StructHeader_Param>>) { ... }
fn get_sheet_name(self) -> Il2CppString { ... }
fn set_sheet_name(self, value: impl Into<Il2CppString>) { ... }
fn get_file_path(self) -> Il2CppString { ... }
fn set_file_path(self, value: impl Into<Il2CppString>) { ... }
fn ctor(self) { ... }
fn get_propertys<M0: IlType + Copy + ClassIdentity>(
self,
) -> List_1<StructProperty> { ... }
fn get_array_ident(self) -> Il2CppString { ... }
}Provided Methods§
Sourcefn get_param(self) -> List_1<StructHeader_Param>
fn get_param(self) -> List_1<StructHeader_Param>
get_param() overload
Sourcefn set_param(self, value: impl Into<List_1<StructHeader_Param>>)
fn set_param(self, value: impl Into<List_1<StructHeader_Param>>)
set_param(crate::system::collections::generic::list_1::List_1<crate::app::structheader::StructHeader_Param>) overload
Sourcefn get_sheet_name(self) -> Il2CppString
fn get_sheet_name(self) -> Il2CppString
get_sheetName() overload
Sourcefn set_sheet_name(self, value: impl Into<Il2CppString>)
fn set_sheet_name(self, value: impl Into<Il2CppString>)
set_sheetName(::unity::Il2CppString) overload
Sourcefn get_file_path(self) -> Il2CppString
fn get_file_path(self) -> Il2CppString
get_filePath() overload
Sourcefn set_file_path(self, value: impl Into<Il2CppString>)
fn set_file_path(self, value: impl Into<Il2CppString>)
set_filePath(::unity::Il2CppString) overload
fn get_propertys<M0: IlType + Copy + ClassIdentity>( self, ) -> List_1<StructProperty>
Sourcefn get_array_ident(self) -> Il2CppString
fn get_array_ident(self) -> Il2CppString
GetArrayIdent() 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: IStructHeader> IStructHeaderMethods for __T
Available on crate feature
app-structheader only.