(&self)
| 26 | |
| 27 | impl Clone for SelectedDevice { |
| 28 | fn clone(&self) -> Self { |
| 29 | Self { |
| 30 | microphone: self.microphone.clone(), |
| 31 | speaker: self.speaker.clone(), |
| 32 | screen: self.screen.clone_device(), |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | pub trait DeviceEq { |
no test coverage detected