SYMBOL INDEX (96 symbols across 12 files) FILE: ehttp/src/lib.rs function fetch (line 40) | pub fn fetch(request: Request, on_done: impl 'static + Send + FnOnce(Res... function fetch_async (line 69) | pub async fn fetch_async(request: Request) -> Result { function headers (line 102) | pub fn headers(headers: &[(&str, &str)]) -> Headers { FILE: ehttp/src/multipart.rs constant BOUNDARY_LEN (line 32) | const BOUNDARY_LEN: usize = 29; function random_alphanumeric (line 34) | fn random_alphanumeric(len: usize) -> String { type MultipartBuilder (line 44) | pub struct MultipartBuilder { method new (line 58) | pub fn new() -> Self { method add_text (line 70) | pub fn add_text(mut self, name: &str, text: &str) -> Self { method add_file (line 81) | pub fn add_file>(self, name: &str, path: P) ... method add_stream (line 95) | pub fn add_stream( method write_boundary (line 109) | fn write_boundary(&mut self) { method write_field_headers (line 122) | fn write_field_headers( method finish (line 153) | pub fn finish(mut self) -> (String, Vec) { method default (line 51) | fn default() -> Self { FILE: ehttp/src/native.rs function fetch_blocking (line 26) | pub fn fetch_blocking(request: &Request) -> crate::Result { function fetch (line 82) | pub(crate) fn fetch(request: Request, on_done: Box crate::Result Self { method insert (line 42) | pub fn insert(&mut self, key: impl ToString, value: impl ToString) { method get (line 49) | pub fn get(&self, key: &str) -> Option<&str> { method get_all (line 60) | pub fn get_all(&self, key: &str) -> impl Iterator { method sort (line 73) | pub fn sort(&mut self) { method from (line 79) | fn from(headers: &[(&str, &str); N]) -> Self { type Item (line 85) | type Item = (String, String); type IntoIter (line 86) | type IntoIter = std::vec::IntoIter; method into_iter (line 88) | fn into_iter(self) -> Self::IntoIter { type Item (line 94) | type Item = &'h (String, String); type IntoIter (line 95) | type IntoIter = std::slice::Iter<'h, (String, String)>; method into_iter (line 97) | fn into_iter(self) -> Self::IntoIter { type Mode (line 109) | pub enum Mode { function from (line 128) | fn from(mode: Mode) -> Self { type Credentials (line 145) | pub enum Credentials { function from (line 159) | fn from(credentials: Credentials) -> Self { type Request (line 170) | pub struct Request { constant DEFAULT_TIMEOUT (line 201) | pub const DEFAULT_TIMEOUT: Duration = Duration::from_secs(30); method new (line 205) | pub fn new(method: Method, url: impl ToString, headers: impl Into Self { method head (line 225) | pub fn head(url: impl ToString) -> Self { method post (line 230) | pub fn post(url: impl ToString, body: Vec) -> Self { method put (line 243) | pub fn put(url: impl ToString, body: Vec) -> Self { method delete (line 256) | pub fn delete(url: &str) -> Self { method post_multipart (line 284) | pub fn post_multipart(url: impl ToString, builder: MultipartBuilder) -... method multipart (line 296) | pub fn multipart(url: impl ToString, builder: MultipartBuilder) -> Self { method post_json (line 302) | pub fn post_json(url: impl ToString, body: &T) -> serde_json::error... method json (line 316) | pub fn json(url: impl ToString, body: &T) -> serde_json::error::Res... method put_json (line 325) | pub fn put_json(url: impl ToString, body: &T) -> serde_json::error:... method with_method (line 338) | pub fn with_method(mut self, method: Method) -> Self { method with_url (line 344) | pub fn with_url(mut self, url: impl ToString) -> Self { method with_body (line 350) | pub fn with_body(mut self, body: Vec) -> Self { method with_headers (line 356) | pub fn with_headers(mut self, headers: Headers) -> Self { method with_header (line 362) | pub fn with_header(mut self, key: impl ToString, value: impl ToString)... method with_timeout (line 368) | pub fn with_timeout(mut self, timeout: Option) -> Self { method with_mode (line 375) | pub fn with_mode(mut self, mode: Mode) -> Self { method with_credentials (line 382) | pub fn with_credentials(mut self, credentials: Credentials) -> Self { method fetch_raw_native (line 389) | pub fn fetch_raw_native(&self, with_timeout: bool) -> Result Option<&str> { method json (line 479) | pub fn json(&self) -> serde_json::Resu... method content_type (line 484) | pub fn content_type(&self) -> Option<&str> { method fmt (line 490) | fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { type PartialResponse (line 513) | pub struct PartialResponse { method complete (line 531) | pub fn complete(self, bytes: Vec) -> Response { type Error (line 554) | pub type Error = String; type Result (line 557) | pub type Result = std::result::Result; type Method (line 561) | pub enum Method { method contains_body (line 575) | pub fn contains_body(&self) -> bool { method parse (line 586) | pub fn parse(string: &str) -> Result { method as_str (line 602) | pub fn as_str(&self) -> &'static str { FILE: ehttp/src/web.rs function fetch_with_request (line 11) | fn fetch_with_request(input: &web_sys::Request) -> js_sys::Promise; function fetch_async (line 30) | pub async fn fetch_async(request: &Request) -> crate::Result { function string_from_fetch_error (line 37) | pub(crate) fn string_from_fetch_error(value: JsValue) -> String { function fetch_base (line 50) | pub(crate) async fn fetch_base(request: &Request) -> Result Result<... function fetch_jsvalue (line 111) | async fn fetch_jsvalue(request: &Request) -> Result { function spawn_future (line 134) | pub fn spawn_future(future: F) function fetch (line 143) | pub(crate) fn fetch(request: Request, on_done: Box bool { method ui_examples (line 193) | fn ui_examples(&mut self, ui: &mut egui::Ui) -> bool { method default (line 34) | fn default() -> Self { function on_fetch_part (line 106) | fn on_fetch_part( function response_ui (line 246) | fn response_ui(ui: &mut egui::Ui, response: &ehttp::Response) { function selectable_text (line 296) | fn selectable_text(ui: &mut egui::Ui, mut text: &str) { FILE: example_eframe/src/main.rs function main (line 1) | fn main() -> eframe::Result<()> { FILE: example_eframe/src/web.rs function start (line 7) | pub async fn start(canvas: web_sys::HtmlCanvasElement) -> Result<(), was...