fidl_fuchsia_url_common/fidl_fuchsia_url_common.rs
1// WARNING: This file is machine generated by fidlgen.
2
3#![warn(clippy::all)]
4#![allow(unused_parens, unused_mut, unused_imports, nonstandard_style)]
5
6use bitflags::bitflags;
7use fidl::encoding::{MessageBufFor, ProxyChannelBox, ResourceDialect};
8use futures::future::{self, MaybeDone, TryFutureExt};
9use zx_status;
10
11/// A URL is used to reference a resource from a specified network location.
12pub type Url = String;
13
14/// There is no maximum URL length defined by RFC 3986, but this length should
15/// be long enough to accommodate most non-data: URLs.
16pub const MAX_URL_LENGTH: u32 = 4096;
17
18mod internal {
19 use super::*;
20}