Skip to main content

IWebRequestQueueOperationMethods

Trait IWebRequestQueueOperationMethods 

Source
pub trait IWebRequestQueueOperationMethods: IWebRequestQueueOperation {
    // Provided methods
    fn get_is_done(self) -> bool { ... }
    fn ctor(self, request: impl Into<UnityWebRequest>) { ... }
    fn complete(self, async_op: impl Into<UnityWebRequestAsyncOperation>) { ... }
}

Provided Methods§

Source

fn get_is_done(self) -> bool

get_IsDone() overload

Source

fn ctor(self, request: impl Into<UnityWebRequest>)

.ctor(crate::unity_engine::networking::unitywebrequest::UnityWebRequest) overload

Source

fn complete(self, async_op: impl Into<UnityWebRequestAsyncOperation>)

Complete(crate::unity_engine::networking::unitywebrequestasyncoperation::UnityWebRequestAsyncOperation) 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: IWebRequestQueueOperation> IWebRequestQueueOperationMethods for __T

Available on crate feature unity_engine-resource_management-webrequestqueueoperation only.