mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 15:44:42 -05:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
67ccd37336 |
@@ -166,7 +166,9 @@ where
|
||||
self.0.take();
|
||||
}
|
||||
|
||||
async fn resolve(self) -> Self::AsyncOutput {
|
||||
async fn resolve(mut self) -> Self::AsyncOutput {
|
||||
// see note on dry_resolve() re: SendWrapper
|
||||
self.0 = None;
|
||||
self
|
||||
}
|
||||
}
|
||||
|
||||
@@ -288,7 +288,9 @@ where
|
||||
self.cb.take();
|
||||
}
|
||||
|
||||
async fn resolve(self) -> Self::AsyncOutput {
|
||||
async fn resolve(mut self) -> Self::AsyncOutput {
|
||||
// see note on dry_resolve() re: SendWrapper
|
||||
self.cb = None;
|
||||
self
|
||||
}
|
||||
}
|
||||
|
||||
@@ -121,7 +121,9 @@ where
|
||||
self.value.take();
|
||||
}
|
||||
|
||||
async fn resolve(self) -> Self::AsyncOutput {
|
||||
async fn resolve(mut self) -> Self::AsyncOutput {
|
||||
// see note on dry_resolve() re: SendWrapper
|
||||
self.value = None;
|
||||
self
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user