enum SymbolGraphSerializer::RelationshipKind

Description

The kind of a relationship between two symbols.

Declared at: clang/include/clang/ExtractAPI/Serialization/SymbolGraphSerializer.h:80

Enumerators

NameValueComment
MemberOf0The source symbol is a member of the target symbol. For example enum constants are members of the enum, class/instance methods are members of the class, etc.
InheritsFrom1The source symbol is inherited from the target symbol.
ConformsTo2The source symbol conforms to the target symbol. For example Objective-C protocol conformances.