(self)
| 186 | /// If this is a reducer context, returns the name of the reducer. |
| 187 | #[inline] |
| 188 | pub fn into_reducer_name(self) -> Option<ReducerName> { |
| 189 | self.reducer.map(|ctx| ctx.name) |
| 190 | } |
| 191 | |
| 192 | /// If this is a reducer context, returns the full reducer metadata. |
| 193 | #[inline] |
no test coverage detected