refactor: remove Sized bound

This commit is contained in:
Ashley Wulber 2024-09-20 15:10:45 -04:00
parent 7c59b07b91
commit 1832d5637b
No known key found for this signature in database
GPG key ID: 5216D4F46A90A820
6 changed files with 6 additions and 8 deletions

View file

@ -189,9 +189,7 @@ pub enum Icon {
}
#[derive(Clone)]
pub struct DndSurface(
pub Arc<Box<dyn HasWindowHandle + 'static + Send + Sync>>,
);
pub struct DndSurface(pub Arc<dyn HasWindowHandle + 'static + Send + Sync>);
impl Debug for DndSurface {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {