(&self, other: &Self)
| 29 | } |
| 30 | impl PartialEq for Source { |
| 31 | fn eq(&self, other: &Self) -> bool { |
| 32 | self.name == other.name |
| 33 | } |
| 34 | } |
| 35 | impl Source { |
| 36 | pub fn new(name: &str, url_template: &str, reply_members: Vec<&str>) -> Self { |
no outgoing calls
no test coverage detected