(&self)
| 9 | |
| 10 | impl Clone for BorderChars { |
| 11 | fn clone(&self) -> Self { |
| 12 | Self { |
| 13 | top_left: self.top_left, |
| 14 | top_right: self.top_right, |
| 15 | bottom_left: self.bottom_left, |
| 16 | bottom_right: self.bottom_right, |
| 17 | horizontal: self.horizontal, |
| 18 | vertical: self.vertical, |
| 19 | } |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | impl Default for BorderChars { |
no outgoing calls
no test coverage detected