tauri-plugin-android-fs 28.2.1

Android file system API for Tauri.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use tauri::http;


pub fn resolve_allow_header(allow: impl IntoIterator<Item = http::Method>) -> String {
    let mut result = String::new();
    for method in allow {
        if !result.is_empty() {
            result.push_str(", ");
        }
        result.push_str(method.as_str());
    }
    result
}