(&self)
| 42 | impl DecodedAddress { |
| 43 | #[cfg_attr(target_family = "wasm", wasm_bindgen(getter))] |
| 44 | pub fn function_name(&self) -> String { |
| 45 | self.function_name.clone() |
| 46 | } |
| 47 | #[cfg_attr(target_family = "wasm", wasm_bindgen(setter))] |
| 48 | pub fn set_function_name(&mut self, function_name: String) { |
| 49 | self.function_name = function_name; |
nothing calls this directly
no outgoing calls
no test coverage detected