Skip to main content

IWWWForm

Trait IWWWForm 

Source
pub trait IWWWForm: IObject {
    // Provided methods
    fn form_data(self) -> List_1<Array<u8>> { ... }
    fn set_form_data(self, value: List_1<Array<u8>>) { ... }
    fn field_names(self) -> List_1<Il2CppString> { ... }
    fn set_field_names(self, value: List_1<Il2CppString>) { ... }
    fn file_names(self) -> List_1<Il2CppString> { ... }
    fn set_file_names(self, value: List_1<Il2CppString>) { ... }
    fn types(self) -> List_1<Il2CppString> { ... }
    fn set_types(self, value: List_1<Il2CppString>) { ... }
    fn boundary(self) -> Array<u8> { ... }
    fn set_boundary(self, value: Array<u8>) { ... }
    fn contains_files(self) -> bool { ... }
    fn set_contains_files(self, value: bool) { ... }
}

Provided Methods§

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§