pub trait IHubMapIconDataMethods: IHubMapIconData {
// Provided methods
fn get_dispos_name(self) -> Il2CppString { ... }
fn set_dispos_name(self, value: impl Into<Il2CppString>) { ... }
fn get_icon_name(self) -> Il2CppString { ... }
fn set_icon_name(self, value: impl Into<Il2CppString>) { ... }
fn get_large_scale(self) -> f32 { ... }
fn set_large_scale(self, value: impl Into<f32>) { ... }
fn get_small_scale(self) -> f32 { ... }
fn set_small_scale(self, value: impl Into<f32>) { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_dispos_name(self) -> Il2CppString
fn get_dispos_name(self) -> Il2CppString
get_DisposName() overload
Sourcefn set_dispos_name(self, value: impl Into<Il2CppString>)
fn set_dispos_name(self, value: impl Into<Il2CppString>)
set_DisposName(::unity::Il2CppString) overload
Sourcefn get_icon_name(self) -> Il2CppString
fn get_icon_name(self) -> Il2CppString
get_IconName() overload
Sourcefn set_icon_name(self, value: impl Into<Il2CppString>)
fn set_icon_name(self, value: impl Into<Il2CppString>)
set_IconName(::unity::Il2CppString) overload
Sourcefn get_large_scale(self) -> f32
fn get_large_scale(self) -> f32
get_LargeScale() overload
Sourcefn set_large_scale(self, value: impl Into<f32>)
fn set_large_scale(self, value: impl Into<f32>)
set_LargeScale(f32) overload
Sourcefn get_small_scale(self) -> f32
fn get_small_scale(self) -> f32
get_SmallScale() overload
Sourcefn set_small_scale(self, value: impl Into<f32>)
fn set_small_scale(self, value: impl Into<f32>)
set_SmallScale(f32) overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
GetDebugName() 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: IHubMapIconData> IHubMapIconDataMethods for __T
Available on crate feature
app-hubmapicondata only.