coerce 0.8.6

Async actor runtime and distributed systems framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::remote::system::RemoteActorSystem;

#[derive(Clone)]
pub struct RemoteClusterClient {
    system: RemoteActorSystem,
}

impl RemoteClusterClient {
    pub fn new(system: RemoteActorSystem) -> RemoteClusterClient {
        RemoteClusterClient { system }
    }
}

impl RemoteClusterClient {}