(&self)
| 842 | |
| 843 | impl SelectorArgs { |
| 844 | fn is_empty(&self) -> bool { |
| 845 | self.id.is_none() |
| 846 | && self.label.is_none() |
| 847 | && self.value.is_none() |
| 848 | && self.element_type.is_none() |
| 849 | && self.index.is_none() |
| 850 | } |
| 851 | |
| 852 | fn to_json(&self) -> Value { |
| 853 | serde_json::json!({ |
no outgoing calls
no test coverage detected