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
5pub mod natural {
6
7 #[doc = " A URL is used to reference a resource from a specified network location.\n"]
8 pub type Url = ::std::string::String;
9}
10
11pub mod wire {
12
13 pub type Url<'de> = ::fidl_next::WireString<'de>;
15}
16
17pub mod wire_optional {}
18
19pub use self::natural::*;
20
21#[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"]
22pub const MAX_URL_LENGTH: u32 = 4096 as u32;
23
24pub mod compat {}