Updated protobuf descriptor pool (#5018)

This commit is contained in:
Alexander Reynolds
2021-02-13 02:23:26 -08:00
committed by GitHub
parent e4f239edfd
commit 0b1cd59896

View File

@@ -7,12 +7,19 @@ class DescriptorPool:
def AddSerializedFile(self, serialized_file_desc_proto): ...
def AddDescriptor(self, desc): ...
def AddEnumDescriptor(self, enum_desc): ...
def AddServiceDescriptor(self, service_desc): ...
def AddExtensionDescriptor(self, extension): ...
def AddFileDescriptor(self, file_desc): ...
def FindFileByName(self, file_name): ...
def FindFileContainingSymbol(self, symbol): ...
def FindMessageTypeByName(self, full_name): ...
def FindEnumTypeByName(self, full_name): ...
def FindFieldByName(self, full_name): ...
def FindOneofByName(self, full_name): ...
def FindExtensionByName(self, full_name): ...
def FindExtensionByNumber(self, message_descriptor, number): ...
def FindAllExtensions(self, message_descriptor): ...
def FindServiceByName(self, full_name): ...
def FindMethodByName(self, full_name): ...
def Default(): ...