(&self)
| 418 | |
| 419 | impl<Row: InModule> Clone for TableHandle<Row> { |
| 420 | fn clone(&self) -> Self { |
| 421 | Self { |
| 422 | client_cache: Arc::clone(&self.client_cache), |
| 423 | pending_mutations: self.pending_mutations.clone(), |
| 424 | table_name: self.table_name, |
| 425 | } |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | impl<Row: InModule + Send + Sync + Clone + 'static> TableHandle<Row> { |
no outgoing calls