(&self)
| 95 | |
| 96 | impl ReturnValue { |
| 97 | pub fn as_object(&self) -> Option<&HashMap<String, serde_json::Value>> { |
| 98 | match self { |
| 99 | Self::Object(obj) => Some(obj), |
| 100 | _ => None, |
| 101 | } |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | impl Serialize for ReturnValue { |
no outgoing calls