MCPcopy Create free account
hub / github.com/NyxCode/ormx / send

Method send

ormx/src/lib.rs:221–226  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

219// Ridiculous workaround for [#100013](https://github.com/rust-lang/rust/issues/100013#issuecomment-2210995259).
220trait SendFuture: Future {
221 fn send(self) -> impl Future<Output = Self::Output> + Send
222 where
223 Self: Sized + Send,
224 {
225 self
226 }
227}
228
229impl<T: Future> SendFuture for T {}

Callers 2

patchMethod · 0.80
reloadMethod · 0.80

Implementers 1

lib.rsormx/src/lib.rs

Calls

no outgoing calls

Tested by

no test coverage detected