pub trait IProviderLoadRequestOptionsMethods: IProviderLoadRequestOptions {
// Provided methods
fn copy(self) -> ProviderLoadRequestOptions { ... }
fn get_ignore_failures(self) -> bool { ... }
fn set_ignore_failures(self, value: impl Into<bool>) { ... }
fn get_web_request_timeout(self) -> i32 { ... }
fn set_web_request_timeout(self, value: impl Into<i32>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn copy(self) -> ProviderLoadRequestOptions
fn copy(self) -> ProviderLoadRequestOptions
Copy() overload
Sourcefn get_ignore_failures(self) -> bool
fn get_ignore_failures(self) -> bool
get_IgnoreFailures() overload
Sourcefn set_ignore_failures(self, value: impl Into<bool>)
fn set_ignore_failures(self, value: impl Into<bool>)
set_IgnoreFailures(bool) overload
Sourcefn get_web_request_timeout(self) -> i32
fn get_web_request_timeout(self) -> i32
get_WebRequestTimeout() overload
Sourcefn set_web_request_timeout(self, value: impl Into<i32>)
fn set_web_request_timeout(self, value: impl Into<i32>)
set_WebRequestTimeout(i32) 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: IProviderLoadRequestOptions> IProviderLoadRequestOptionsMethods for __T
Available on crate feature
unity_engine-resource_management-resource_providers-providerloadrequestoptions only.