(&self, v: Vec<u8>)
| 165 | |
| 166 | impl ReaderContext { |
| 167 | fn strlit_v(&self, v: Vec<u8>) -> Option<RValue> { |
| 168 | Some(RValue::String { |
| 169 | typename: StringType::StrLit, |
| 170 | value: string_from_utf8(v)?, |
| 171 | }) |
| 172 | } |
| 173 | |
| 174 | fn enumerate_v(&self, ty: String, variant: String) -> RValue { |
| 175 | RValue::Enum { |
no test coverage detected