Skip to main content

AbsoluteComponentUrl

Type Alias AbsoluteComponentUrl 

Source
pub type AbsoluteComponentUrl = AbsoluteComponentUrl<Scheme, NoneHost, Option<Path>, NoneHash>;
Expand description

An absolute component URL for the boot resolver, composed of:

  • scheme == “fuchsia-boot”
  • no host
  • an optional Path. Unpackaged bootfs components, of which there are few remaining, do not have a Path.
  • no hash
  • a Resource

Aliased Type§

pub struct AbsoluteComponentUrl { /* private fields */ }

Implementations§

Source§

impl AbsoluteComponentUrl

Source

pub fn new(path: Option<Path>, resource: Resource) -> Self