We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a10933 commit 0afda44Copy full SHA for 0afda44
src/draw/handle.rs
@@ -508,7 +508,7 @@ impl<S: SizeHandle> SizeHandle for Box<S> {
508
}
509
510
#[cfg(feature = "stack_dst")]
511
-impl<S> SizeHandle for stack_dst::ValueA<dyn SizeHandle, S>
+impl<'a, S> SizeHandle for stack_dst::ValueA<dyn SizeHandle + 'a, S>
512
where
513
S: Default + Copy + AsRef<[usize]> + AsMut<[usize]>,
514
{
@@ -664,7 +664,7 @@ impl<H: DrawHandle> DrawHandle for Box<H> {
664
665
666
667
-impl<S> DrawHandle for stack_dst::ValueA<dyn DrawHandle, S>
+impl<'a, S> DrawHandle for stack_dst::ValueA<dyn DrawHandle + 'a, S>
668
669
670
0 commit comments