(&self)
| 194 | |
| 195 | impl<T> Clone for Table<T> { |
| 196 | fn clone(&self) -> Self { |
| 197 | Self { |
| 198 | name: self.name.clone(), |
| 199 | space: Arc::clone(&self.space), |
| 200 | _phantom: PhantomData, |
| 201 | } |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | /// Check whether `column` is the primary key or appears in a secondary index. |
no outgoing calls
no test coverage detected