(&self)
| 492 | |
| 493 | impl Clone for Space { |
| 494 | fn clone(&self) -> Self { |
| 495 | Self { |
| 496 | id: self.id, |
| 497 | transport: Arc::clone(&self.transport), |
| 498 | state: Arc::clone(&self.state), |
| 499 | key_manager: Arc::clone(&self.key_manager), |
| 500 | updates_tx: self.updates_tx.clone(), |
| 501 | serialize_mutations: Arc::clone(&self.serialize_mutations), |
| 502 | ff_in_progress: Arc::clone(&self.ff_in_progress), |
| 503 | } |
| 504 | } |
| 505 | } |
| 506 | |
| 507 | #[cfg(all(test, not(target_arch = "wasm32"), feature = "local-transport"))] |
no outgoing calls