Skip to main content

IUploadHandlerMethods

Trait IUploadHandlerMethods 

Source
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§

Source

fn release(self)

Release() overload

Source

fn ctor(self)

.ctor() overload

Source

fn finalize(self)

Finalize() overload

Source

fn dispose(self)

Dispose() overload

Source

fn set_content_type(self, value: impl Into<Il2CppString>)

set_contentType(::unity::Il2CppString) overload

Source

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§

Source§

impl<__T: IUploadHandler> IUploadHandlerMethods for __T

Available on crate feature unity_engine-networking-uploadhandler only.