pub trait IUploadHandlerMethods: IUploadHandler {
// Provided methods
fn release(self) { ... }
fn ctor(self) { ... }
fn finalize(self) { ... }
fn dispose(self) { ... }
fn set_content_type(self, value: impl Into<Il2CppString>) { ... }
fn internal_set_content_type(
self,
new_content_type: impl Into<Il2CppString>,
) { ... }
}Provided Methods§
Sourcefn set_content_type(self, value: impl Into<Il2CppString>)
fn set_content_type(self, value: impl Into<Il2CppString>)
set_contentType(::unity::Il2CppString) overload
Sourcefn internal_set_content_type(self, new_content_type: impl Into<Il2CppString>)
fn internal_set_content_type(self, new_content_type: impl Into<Il2CppString>)
InternalSetContentType(::unity::Il2CppString) 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: IUploadHandler> IUploadHandlerMethods for __T
Available on crate feature
unity_engine-networking-uploadhandler only.