pub trait IAkWwiseInitializationSettings_PlatformSettingsMethods: IAkWwiseInitializationSettings_PlatformSettings {
// Provided methods
fn ignore_property_value(self, property_path: impl Into<Il2CppString>) { ... }
fn is_property_ignored(self, property_path: impl Into<Il2CppString>) -> bool { ... }
fn ctor(self) { ... }
fn set_use_global_property_value(
self,
property_path: impl Into<Il2CppString>,
use: impl Into<bool>,
) { ... }
fn set_global_property_values(self, enumerable: impl Into<IEnumerable>) { ... }
fn is_using_global_property_value(
self,
property_path: impl Into<Il2CppString>,
) -> bool { ... }
fn get_global_property_hash_set(self) -> HashSet_1<Il2CppString> { ... }
fn set_global_property_hash_set(
self,
value: impl Into<HashSet_1<Il2CppString>>,
) { ... }
}Provided Methods§
Sourcefn ignore_property_value(self, property_path: impl Into<Il2CppString>)
fn ignore_property_value(self, property_path: impl Into<Il2CppString>)
IgnorePropertyValue(::unity::Il2CppString) overload
Sourcefn is_property_ignored(self, property_path: impl Into<Il2CppString>) -> bool
fn is_property_ignored(self, property_path: impl Into<Il2CppString>) -> bool
IsPropertyIgnored(::unity::Il2CppString) overload
Sourcefn set_use_global_property_value(
self,
property_path: impl Into<Il2CppString>,
use: impl Into<bool>,
)
fn set_use_global_property_value( self, property_path: impl Into<Il2CppString>, use: impl Into<bool>, )
SetUseGlobalPropertyValue(::unity::Il2CppString, bool) overload
Sourcefn set_global_property_values(self, enumerable: impl Into<IEnumerable>)
fn set_global_property_values(self, enumerable: impl Into<IEnumerable>)
SetGlobalPropertyValues(crate::system::collections::ienumerable::IEnumerable) overload
Sourcefn is_using_global_property_value(
self,
property_path: impl Into<Il2CppString>,
) -> bool
fn is_using_global_property_value( self, property_path: impl Into<Il2CppString>, ) -> bool
IsUsingGlobalPropertyValue(::unity::Il2CppString) overload
Sourcefn get_global_property_hash_set(self) -> HashSet_1<Il2CppString>
fn get_global_property_hash_set(self) -> HashSet_1<Il2CppString>
get_GlobalPropertyHashSet() overload
Sourcefn set_global_property_hash_set(self, value: impl Into<HashSet_1<Il2CppString>>)
fn set_global_property_hash_set(self, value: impl Into<HashSet_1<Il2CppString>>)
set_GlobalPropertyHashSet(crate::system::collections::generic::hashset_1::HashSet_1<::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: IAkWwiseInitializationSettings_PlatformSettings> IAkWwiseInitializationSettings_PlatformSettingsMethods for __T
Available on crate feature
root-akwwiseinitializationsettings only.