pub trait IWWWMethods: IWWW {
Show 15 methods
// Provided methods
fn ctor(self, url: impl Into<Il2CppString>, form: impl Into<WWWForm>) { ... }
fn ctor_2(
self,
url: impl Into<Il2CppString>,
post_data: impl Into<Array<u8>>,
) { ... }
fn ctor_3(
self,
url: impl Into<Il2CppString>,
post_data: impl Into<Array<u8>>,
headers: impl Into<Dictionary_2<Il2CppString, Il2CppString>>,
) { ... }
fn ctor_4(
self,
url: impl Into<Il2CppString>,
name: impl Into<Il2CppString>,
hash: impl Into<Hash128>,
crc: impl Into<u32>,
) { ... }
fn get_asset_bundle(self) -> AssetBundle { ... }
fn get_bytes(self) -> Array<u8> { ... }
fn get_error(self) -> Il2CppString { ... }
fn get_is_done(self) -> bool { ... }
fn get_progress(self) -> f32 { ... }
fn get_response_headers(self) -> Dictionary_2<Il2CppString, Il2CppString> { ... }
fn get_text(self) -> Il2CppString { ... }
fn get_url(self) -> Il2CppString { ... }
fn get_keep_waiting(self) -> bool { ... }
fn dispose(self) { ... }
fn wait_until_done_if_possible(self) -> bool { ... }
}Provided Methods§
Sourcefn ctor(self, url: impl Into<Il2CppString>, form: impl Into<WWWForm>)
fn ctor(self, url: impl Into<Il2CppString>, form: impl Into<WWWForm>)
.ctor(::unity::Il2CppString, crate::unity_engine::wwwform::WWWForm) overload
Sourcefn ctor_2(self, url: impl Into<Il2CppString>, post_data: impl Into<Array<u8>>)
fn ctor_2(self, url: impl Into<Il2CppString>, post_data: impl Into<Array<u8>>)
.ctor(::unity::Il2CppString, ::unity::Array<u8>) overload
Sourcefn ctor_3(
self,
url: impl Into<Il2CppString>,
post_data: impl Into<Array<u8>>,
headers: impl Into<Dictionary_2<Il2CppString, Il2CppString>>,
)
fn ctor_3( self, url: impl Into<Il2CppString>, post_data: impl Into<Array<u8>>, headers: impl Into<Dictionary_2<Il2CppString, Il2CppString>>, )
.ctor(::unity::Il2CppString, ::unity::Array<u8>, crate::system::collections::generic::dictionary_2::Dictionary_2<::unity::Il2CppString,::unity::Il2CppString>) overload
Sourcefn ctor_4(
self,
url: impl Into<Il2CppString>,
name: impl Into<Il2CppString>,
hash: impl Into<Hash128>,
crc: impl Into<u32>,
)
fn ctor_4( self, url: impl Into<Il2CppString>, name: impl Into<Il2CppString>, hash: impl Into<Hash128>, crc: impl Into<u32>, )
.ctor(::unity::Il2CppString, ::unity::Il2CppString, crate::unity_engine::hash128::Hash128, u32) overload
Sourcefn get_asset_bundle(self) -> AssetBundle
fn get_asset_bundle(self) -> AssetBundle
get_assetBundle() overload
Sourcefn get_error(self) -> Il2CppString
fn get_error(self) -> Il2CppString
get_error() overload
Sourcefn get_is_done(self) -> bool
fn get_is_done(self) -> bool
get_isDone() overload
Sourcefn get_progress(self) -> f32
fn get_progress(self) -> f32
get_progress() overload
Sourcefn get_response_headers(self) -> Dictionary_2<Il2CppString, Il2CppString>
fn get_response_headers(self) -> Dictionary_2<Il2CppString, Il2CppString>
get_responseHeaders() overload
Sourcefn get_text(self) -> Il2CppString
fn get_text(self) -> Il2CppString
get_text() overload
Sourcefn get_url(self) -> Il2CppString
fn get_url(self) -> Il2CppString
get_url() overload
Sourcefn get_keep_waiting(self) -> bool
fn get_keep_waiting(self) -> bool
get_keepWaiting() overload
Sourcefn wait_until_done_if_possible(self) -> bool
fn wait_until_done_if_possible(self) -> bool
WaitUntilDoneIfPossible() 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: IWWW> IWWWMethods for __T
unity_engine-www only.