mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Implement ToComputedValue for Box<T>
This commit is contained in:
parent
4e64ccde60
commit
7c31202dda
4 changed files with 27 additions and 3 deletions
|
@ -296,6 +296,22 @@ impl<T> ToComputedValue for Vec<T>
|
|||
}
|
||||
}
|
||||
|
||||
impl<T> ToComputedValue for Box<T>
|
||||
where T: ToComputedValue
|
||||
{
|
||||
type ComputedValue = Box<<T as ToComputedValue>::ComputedValue>;
|
||||
|
||||
#[inline]
|
||||
fn to_computed_value(&self, context: &Context) -> Self::ComputedValue {
|
||||
Box::new(T::to_computed_value(self, context))
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn from_computed_value(computed: &Self::ComputedValue) -> Self {
|
||||
Box::new(T::from_computed_value(computed))
|
||||
}
|
||||
}
|
||||
|
||||
impl<T> ToComputedValue for Box<[T]>
|
||||
where T: ToComputedValue
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue