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 a3d9ea4 commit 4bbf416Copy full SHA for 4bbf416
experiments/2024-12-09/src/geometry/operation.rs
@@ -56,14 +56,6 @@ impl<T> Handle<T> {
56
}
57
58
59
-impl<T> Deref for Handle<T> {
60
- type Target = T;
61
-
62
- fn deref(&self) -> &T {
63
- self.inner.as_ref()
64
- }
65
-}
66
67
impl<T> Clone for Handle<T> {
68
fn clone(&self) -> Self {
69
Self {
@@ -72,6 +64,14 @@ impl<T> Clone for Handle<T> {
72
73
74
+impl<T> Deref for Handle<T> {
+ type Target = T;
+
70
+ fn deref(&self) -> &T {
71
+ self.inner.as_ref()
+ }
+}
75
#[derive(Clone)]
76
pub struct AnyOp {
77
inner: Rc<dyn Operation>,
0 commit comments