pub trait IUnityWebRequestResultMethods: IUnityWebRequestResult {
// Provided methods
fn ctor(self, request: impl Into<UnityWebRequest>) { ... }
fn to_string(self) -> Il2CppString { ... }
fn get_error(self) -> Il2CppString { ... }
fn get_response_code(self) -> i64 { ... }
fn get_result(self) -> UnityWebRequest_Result { ... }
fn get_method(self) -> Il2CppString { ... }
fn get_url(self) -> Il2CppString { ... }
}Provided Methods§
Sourcefn ctor(self, request: impl Into<UnityWebRequest>)
fn ctor(self, request: impl Into<UnityWebRequest>)
.ctor(crate::unity_engine::networking::unitywebrequest::UnityWebRequest) overload
Sourcefn to_string(self) -> Il2CppString
fn to_string(self) -> Il2CppString
ToString() overload
Sourcefn get_error(self) -> Il2CppString
fn get_error(self) -> Il2CppString
get_Error() overload
Sourcefn get_response_code(self) -> i64
fn get_response_code(self) -> i64
get_ResponseCode() overload
Sourcefn get_result(self) -> UnityWebRequest_Result
fn get_result(self) -> UnityWebRequest_Result
get_Result() overload
Sourcefn get_method(self) -> Il2CppString
fn get_method(self) -> Il2CppString
get_Method() overload
Sourcefn get_url(self) -> Il2CppString
fn get_url(self) -> Il2CppString
get_Url() 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: IUnityWebRequestResult> IUnityWebRequestResultMethods for __T
Available on crate feature
unity_engine-resource_management-util-unitywebrequestresult only.