pub trait IStructHeader_ParamMethods: IStructHeader_Param {
Show 13 methods
// Provided methods
fn get_name(self) -> Il2CppString { ... }
fn set_name(self, value: impl Into<Il2CppString>) { ... }
fn get_type(self) -> Il2CppString { ... }
fn set_type(self, value: impl Into<Il2CppString>) { ... }
fn get_ident(self) -> Il2CppString { ... }
fn set_ident(self, value: impl Into<Il2CppString>) { ... }
fn get_min(self) -> Il2CppString { ... }
fn set_min(self, value: impl Into<Il2CppString>) { ... }
fn get_max(self) -> Il2CppString { ... }
fn set_max(self, value: impl Into<Il2CppString>) { ... }
fn get_chg(self) -> Il2CppString { ... }
fn set_chg(self, value: impl Into<Il2CppString>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
get_name() overload
Sourcefn set_name(self, value: impl Into<Il2CppString>)
fn set_name(self, value: impl Into<Il2CppString>)
set_name(::unity::Il2CppString) overload
Sourcefn get_type(self) -> Il2CppString
fn get_type(self) -> Il2CppString
get_type() overload
Sourcefn set_type(self, value: impl Into<Il2CppString>)
fn set_type(self, value: impl Into<Il2CppString>)
set_type(::unity::Il2CppString) overload
Sourcefn get_ident(self) -> Il2CppString
fn get_ident(self) -> Il2CppString
get_ident() overload
Sourcefn set_ident(self, value: impl Into<Il2CppString>)
fn set_ident(self, value: impl Into<Il2CppString>)
set_ident(::unity::Il2CppString) overload
Sourcefn get_min(self) -> Il2CppString
fn get_min(self) -> Il2CppString
get_min() overload
Sourcefn set_min(self, value: impl Into<Il2CppString>)
fn set_min(self, value: impl Into<Il2CppString>)
set_min(::unity::Il2CppString) overload
Sourcefn get_max(self) -> Il2CppString
fn get_max(self) -> Il2CppString
get_max() overload
Sourcefn set_max(self, value: impl Into<Il2CppString>)
fn set_max(self, value: impl Into<Il2CppString>)
set_max(::unity::Il2CppString) overload
Sourcefn get_chg(self) -> Il2CppString
fn get_chg(self) -> Il2CppString
get_chg() overload
Sourcefn set_chg(self, value: impl Into<Il2CppString>)
fn set_chg(self, value: impl Into<Il2CppString>)
set_chg(::unity::Il2CppString) 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_Param> IStructHeader_ParamMethods for __T
Available on crate feature
app-structheader only.