Skip to main content

IProviderLoadRequestOptionsMethods

Trait IProviderLoadRequestOptionsMethods 

Source
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§

Source

fn copy(self) -> ProviderLoadRequestOptions

Copy() overload

Source

fn get_ignore_failures(self) -> bool

get_IgnoreFailures() overload

Source

fn set_ignore_failures(self, value: impl Into<bool>)

set_IgnoreFailures(bool) overload

Source

fn get_web_request_timeout(self) -> i32

get_WebRequestTimeout() overload

Source

fn set_web_request_timeout(self, value: impl Into<i32>)

set_WebRequestTimeout(i32) overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IProviderLoadRequestOptions> IProviderLoadRequestOptionsMethods for __T

Available on crate feature unity_engine-resource_management-resource_providers-providerloadrequestoptions only.