fidl_next_fuchsia_url/
fidl_next_fuchsia_url.rs1#![warn(clippy::all)]
3#![allow(unused_parens, unused_variables, unused_mut, unused_imports, unreachable_code)]
4
5#[doc = " There is no maximum URL length defined by RFC 3986, but this length should\n be long enough to accommodate most non-data: URLs.\n"]
6pub const MAX_URL_LENGTH: u32 = 4096;
7
8#[doc = " A URL is used to reference a resource from a specified network location.\n"]
9pub type Url = String;
10
11pub type WireUrl = ::fidl_next::WireString;
13
14pub mod compat {}