Protobuf Team Bot | 5c7a9fd | 2024-04-16 07:03:22 -0700 | [diff] [blame] | 1 | mod arena; |
| 2 | pub use arena::{upb_Arena, Arena, RawArena}; |
Protobuf Team Bot | 2678e10 | 2024-04-12 13:50:28 -0700 | [diff] [blame] | 3 | |
Protobuf Team Bot | d44ba90 | 2024-04-16 08:05:40 -0700 | [diff] [blame] | 4 | mod array; |
| 5 | pub use array::{ |
| 6 | upb_Array, upb_Array_Append, upb_Array_DataPtr, upb_Array_Get, upb_Array_GetMutable, |
Derek Benson | f2d8c2b | 2024-05-13 05:48:10 -0700 | [diff] [blame] | 7 | upb_Array_MutableDataPtr, upb_Array_New, upb_Array_Reserve, upb_Array_Resize, upb_Array_Set, |
| 8 | upb_Array_Size, RawArray, |
Protobuf Team Bot | d44ba90 | 2024-04-16 08:05:40 -0700 | [diff] [blame] | 9 | }; |
Protobuf Team Bot | 2678e10 | 2024-04-12 13:50:28 -0700 | [diff] [blame] | 10 | |
Protobuf Team Bot | d44ba90 | 2024-04-16 08:05:40 -0700 | [diff] [blame] | 11 | mod ctype; |
| 12 | pub use ctype::CType; |
Protobuf Team Bot | 2678e10 | 2024-04-12 13:50:28 -0700 | [diff] [blame] | 13 | |
Protobuf Team Bot | d44ba90 | 2024-04-16 08:05:40 -0700 | [diff] [blame] | 14 | mod extension_registry; |
| 15 | pub use extension_registry::{upb_ExtensionRegistry, RawExtensionRegistry}; |
Protobuf Team Bot | 2678e10 | 2024-04-12 13:50:28 -0700 | [diff] [blame] | 16 | |
Protobuf Team Bot | d44ba90 | 2024-04-16 08:05:40 -0700 | [diff] [blame] | 17 | mod map; |
| 18 | pub use map::{ |
| 19 | upb_Map, upb_Map_Clear, upb_Map_Delete, upb_Map_Get, upb_Map_Insert, upb_Map_New, upb_Map_Next, |
| 20 | upb_Map_Size, MapInsertStatus, RawMap, __rust_proto_kUpb_Map_Begin, |
| 21 | }; |
Protobuf Team Bot | 2678e10 | 2024-04-12 13:50:28 -0700 | [diff] [blame] | 22 | |
Protobuf Team Bot | d44ba90 | 2024-04-16 08:05:40 -0700 | [diff] [blame] | 23 | mod message; |
Protobuf Team Bot | 734729a | 2024-04-24 12:25:37 -0700 | [diff] [blame] | 24 | pub use message::{ |
Jakob Buchgraber | b6e0a48 | 2024-05-06 05:16:05 -0700 | [diff] [blame] | 25 | upb_Message, upb_Message_DeepClone, upb_Message_DeepCopy, upb_Message_New, |
| 26 | upb_Message_SetBaseField, RawMessage, |
Protobuf Team Bot | 734729a | 2024-04-24 12:25:37 -0700 | [diff] [blame] | 27 | }; |
Protobuf Team Bot | 2678e10 | 2024-04-12 13:50:28 -0700 | [diff] [blame] | 28 | |
Protobuf Team Bot | d44ba90 | 2024-04-16 08:05:40 -0700 | [diff] [blame] | 29 | mod message_value; |
| 30 | pub use message_value::{upb_MessageValue, upb_MutableMessageValue}; |
Protobuf Team Bot | 2678e10 | 2024-04-12 13:50:28 -0700 | [diff] [blame] | 31 | |
Protobuf Team Bot | d44ba90 | 2024-04-16 08:05:40 -0700 | [diff] [blame] | 32 | mod mini_table; |
Jakob Buchgraber | b6e0a48 | 2024-05-06 05:16:05 -0700 | [diff] [blame] | 33 | pub use mini_table::{ |
| 34 | upb_MiniTable, upb_MiniTableField, upb_MiniTable_FindFieldByNumber, RawMiniTable, |
| 35 | RawMiniTableField, |
| 36 | }; |
Protobuf Team Bot | 2678e10 | 2024-04-12 13:50:28 -0700 | [diff] [blame] | 37 | |
Protobuf Team Bot | d44ba90 | 2024-04-16 08:05:40 -0700 | [diff] [blame] | 38 | mod opaque_pointee; |
Protobuf Team Bot | 2678e10 | 2024-04-12 13:50:28 -0700 | [diff] [blame] | 39 | |
Protobuf Team Bot | 734729a | 2024-04-24 12:25:37 -0700 | [diff] [blame] | 40 | mod owned_arena_box; |
| 41 | pub use owned_arena_box::OwnedArenaBox; |
| 42 | |
Protobuf Team Bot | d44ba90 | 2024-04-16 08:05:40 -0700 | [diff] [blame] | 43 | mod string_view; |
| 44 | pub use string_view::StringView; |
Protobuf Team Bot | 2678e10 | 2024-04-12 13:50:28 -0700 | [diff] [blame] | 45 | |
Protobuf Team Bot | 734729a | 2024-04-24 12:25:37 -0700 | [diff] [blame] | 46 | pub mod wire; |
| 47 | pub use wire::{upb_Decode, DecodeStatus, EncodeStatus}; |