(&self)
| 217 | |
| 218 | impl<T> Clone for ControlEnd<T> { |
| 219 | fn clone(&self) -> Self { |
| 220 | Self { |
| 221 | current_event: self.current_event.clone(), |
| 222 | sender: self.sender.clone(), |
| 223 | should_send_structured_event: self.should_send_structured_event, |
| 224 | pass_through_destination: PhantomData, |
| 225 | } |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | impl<T> ControlEnd<T> { |
no outgoing calls
no test coverage detected