Struct solana_jsonrpc_tcp_server::tokio::executor::Spawn [−][src]
pub struct Spawn(_);
Return value from the spawn function.
Currently this value doesn't actually provide any functionality. However, it provides a way to add functionality later without breaking backwards compatibility.
This also implements IntoFuture so that it can be used as the return value
in a for_each loop.
See spawn for more details.
Trait Implementations
impl IntoFuture for Spawn[src]
impl IntoFuture for Spawntype Future = FutureResult<(), ()>
The future that this type can be converted into.
type Item = ()
The item that the future may resolve with.
type Error = ()
The error that the future may resolve with.
fn into_future(self) -> <Spawn as IntoFuture>::Future[src]
fn into_future(self) -> <Spawn as IntoFuture>::FutureConsumes this object and produces a future.
impl Debug for Spawn[src]
impl Debug for Spawn