Skip to content

Commit c1f9c5f

Browse files
committed
Remove unused trait bounds
1 parent a0904a9 commit c1f9c5f

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

experiments/2024-12-09/src/geometry/operation.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,9 @@ pub trait Operation {
1616
}
1717

1818
pub trait OperationOutput: Operation {
19-
type Output
20-
where
21-
Self: Sized;
19+
type Output;
2220

23-
fn output(&self) -> &Self::Output
24-
where
25-
Self: Sized;
21+
fn output(&self) -> &Self::Output;
2622
}
2723

2824
pub struct OperationDisplay<'r> {

0 commit comments

Comments
 (0)