• Home
  • Raw
  • Download

Lines Matching defs:ParseResultWithoutLoc

124 type ParseResultWithoutLoc<A> = Result<A, ParseErrorWithoutLoc>;  typedef
297 fn merge_bool_value(&mut self, w: &mut BoolValue) -> ParseResultWithoutLoc<()> { in merge_bool_value()
302 fn merge_string_value(&mut self, w: &mut StringValue) -> ParseResultWithoutLoc<()> { in merge_string_value()
307 fn merge_bytes_value(&mut self, w: &mut BytesValue) -> ParseResultWithoutLoc<()> { in merge_bytes_value()
428 ) -> ParseResultWithoutLoc<()> { in merge_singular_field()
435 C: for<'b> FnMut(&'b mut Self) -> ParseResultWithoutLoc<()>, in read_list()
461 ) -> ParseResultWithoutLoc<()> { in merge_repeated_field()
471 fn merge_wk_list_value(&mut self, list: &mut ListValue) -> ParseResultWithoutLoc<()> { in merge_wk_list_value()
487 Fi: for<'b> FnMut(&mut Self, K) -> ParseResultWithoutLoc<()>, in read_map()
533 ) -> ParseResultWithoutLoc<()> { in merge_map_field()
547 fn merge_wk_struct(&mut self, struct_value: &mut Struct) -> ParseResultWithoutLoc<()> { in merge_wk_struct()
560 fn skip_json_value(&mut self) -> ParseResultWithoutLoc<()> { in skip_json_value()
586 ) -> ParseResultWithoutLoc<()> { in merge_field()
594 fn merge_inner(&mut self, message: &mut dyn MessageDyn) -> ParseResultWithoutLoc<()> { in merge_inner()
691 fn merge_wk_duration(&mut self, duration: &mut Duration) -> ParseResultWithoutLoc<()> { in merge_wk_duration()
765 fn merge_wk_timestamp(&mut self, timestamp: &mut Timestamp) -> ParseResultWithoutLoc<()> { in merge_wk_timestamp()
773 fn merge_wk_field_mask(&mut self, field_mask: &mut FieldMask) -> ParseResultWithoutLoc<()> { in merge_wk_field_mask()
793 fn merge_wk_value(&mut self, value: &mut Value) -> ParseResultWithoutLoc<()> { in merge_wk_value()
818 fn merge_wk_any(&mut self, _value: &mut Any) -> ParseResultWithoutLoc<()> { in merge_wk_any()