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§
Sourcefn get_is_done(self) -> bool
fn get_is_done(self) -> bool
get_IsDone() overload
Sourcefn ctor(self, request: impl Into<UnityWebRequest>)
fn ctor(self, request: impl Into<UnityWebRequest>)
.ctor(crate::unity_engine::networking::unitywebrequest::UnityWebRequest) overload
Sourcefn complete(self, async_op: impl Into<UnityWebRequestAsyncOperation>)
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§
impl<__T: IWebRequestQueueOperation> IWebRequestQueueOperationMethods for __T
Available on crate feature
unity_engine-resource_management-webrequestqueueoperation only.