If you want clone the NetworkConfig
value declare for it the Clone
trait:
#[derive(Debug, Clone)]
pub struct NetworkConfig {
pub bind: String,
pub node_key_file: String,
}
Otherwise, for the rules of receiver method lookup you will end up with invoking a Clone
on a reference through
the following Clone
implementer:
impl<'_, T> Clone for &'_ T
And the cloned reference will have a lifetime bound to scope of clone()
invocation.
With derive(Clone)
the run
function compiles, but it works only when network_config
argument has 'static
lifetime, because of tokio::spawn lifetime requirement.
Probably this is not what you want. If this is the case pass NetworkConfig
by value and eventually clone it in the caller
context.
use async_std::io::Error;
use tokio;
mod config {
#[derive(Debug, Clone)]
pub struct NetworkConfig {
pub bind: String,
pub node_key_file: String,
}
}
async fn network_handler(network_config: &config::NetworkConfig) -> Result<(), Error> {
println!("using {:?}", network_config);
Ok(())
}
pub async fn run(network_config: config::NetworkConfig) -> Result<(), Error> {
tokio::spawn(async move { network_handler(&network_config).await }).await?
}
#[tokio::main]
async fn main() {
let config = config::NetworkConfig {
bind: "my_bind".to_owned(),
node_key_file: "abc".to_owned(),
};
tokio::spawn(run(config.clone()));
}
You may ask why this works, indeed a reference is still passed to network_handler()
.
This is because network_config
is moved inside the spawn async block and
this makes gaining static lifetime for the inferred type of the async block.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…