pub trait IWebRequestQueueOperation: IObject {
// Provided methods
fn result(self) -> UnityWebRequestAsyncOperation { ... }
fn set_result(self, value: UnityWebRequestAsyncOperation) { ... }
fn on_complete(self) -> Action_1<UnityWebRequestAsyncOperation> { ... }
fn set_on_complete(self, value: Action_1<UnityWebRequestAsyncOperation>) { ... }
fn m_web_request(self) -> UnityWebRequest { ... }
fn set_m_web_request(self, value: UnityWebRequest) { ... }
}Provided Methods§
fn result(self) -> UnityWebRequestAsyncOperation
fn set_result(self, value: UnityWebRequestAsyncOperation)
fn on_complete(self) -> Action_1<UnityWebRequestAsyncOperation>
fn set_on_complete(self, value: Action_1<UnityWebRequestAsyncOperation>)
fn m_web_request(self) -> UnityWebRequest
fn set_m_web_request(self, value: UnityWebRequest)
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.