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
impl ToComputedValue for SpecifiedUrl
Source§type ComputedValue = ComputedUrl
type ComputedValue = ComputedUrl
The computed value type we’re going to be converted to.
Source§fn to_computed_value(&self, _: &Context<'_>) -> Self::ComputedValue
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
fn from_computed_value(computed: &ComputedUrl) -> Self
Convert a computed value to specified value form. Read more