sensible arranger entrypoint! now let's see whats up with the align modifiers

This commit is contained in:
🪞👃🪞 2025-01-07 21:11:56 +01:00
parent 0ee3059cf8
commit f052891473
7 changed files with 180 additions and 105 deletions

View file

@ -20,6 +20,7 @@ impl<'a, E: Output> Content<E> for &RenderDyn<'a, E> where Self: Sized {
pub type RenderBox<'a, E: Output> = Box<RenderDyn<'a, E>>;
impl<'a, E: Output> Content<E> for RenderBox<'a, E> {
fn content (&self) -> impl Render<E> { self.deref() }
//fn boxed <'b> (self) -> RenderBox<'b, E> where Self: Sized + 'b { self }
}
impl<E: Output, C: Content<E>> Render<E> for C {