pub const RESULT_METHODS: &[&str];Expand description
The built-in Result[T, E] methods this codegen lowers on the tagged value.
is_ok/is_err test the tag; unwrap/unwrap_or extract the Ok payload
(or a default); map/map_err transform the Ok/Err payload. Mirrors the
checker’s Result method resolution (checker.rs).