diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-04-07 10:50:39 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-04-07 11:07:00 +0200 |
| commit | 3d52387eea321e94c13b61666f7a758052b20c5d (patch) | |
| tree | 5c55c51ca7e4b53dee61d280c39b7f664b8b9d6b /src/eval/show.rs | |
| parent | 20b4d590b3efbd9b7a44fd6d3a658e7b84d21b99 (diff) | |
Rework style chains
Diffstat (limited to 'src/eval/show.rs')
| -rw-r--r-- | src/eval/show.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval/show.rs b/src/eval/show.rs index e85903d2..383497ba 100644 --- a/src/eval/show.rs +++ b/src/eval/show.rs @@ -9,7 +9,7 @@ use crate::util::Prehashed; use crate::Context; /// A node that can be realized given some styles. -pub trait Show { +pub trait Show: 'static { /// Realize this node in the given styles. fn show(&self, ctx: &mut Context, styles: StyleChain) -> TypResult<Content>; |
