fn read_utf8(self: &mut Parser<'a>, len: usize) -> Result<String, ParseError> { self.consume_bytes(len) .and_then(|bytes| String::from_utf8(bytes.to_vec())) }
確定! 回上一頁