style::servo::url

Type Alias SpecifiedUrl

Source
pub type SpecifiedUrl = CssUrl;
Expand description

A specified url() value for servo.

Aliased Type§

struct SpecifiedUrl(pub Arc<CssUrlData>);

Fields§

§0: Arc<CssUrlData>

Trait Implementations§

Source§

impl ToComputedValue for SpecifiedUrl

Source§

type ComputedValue = ComputedUrl

The computed value type we’re going to be converted to.
Source§

fn to_computed_value(&self, _: &Context<'_>) -> Self::ComputedValue

Convert a specified value to a computed value, using itself and the data inside the Context.
Source§

fn from_computed_value(computed: &ComputedUrl) -> Self

Convert a computed value to specified value form. Read more