@nebius/js-sdk - v0.2.54
    Preparing search index...

    Interface FieldOptions_CTypeValueMembers

    Defines the static values of FieldOptions_CType.

    interface FieldOptions_CTypeValueMembers {
        CORD: EnumInstance<"UNRECOGNIZED" | "STRING" | "CORD" | "STRING_PIECE">;
        STRING: EnumInstance<"UNRECOGNIZED" | "STRING" | "CORD" | "STRING_PIECE">;
        STRING_PIECE: EnumInstance<
            "UNRECOGNIZED"
            | "STRING"
            | "CORD"
            | "STRING_PIECE",
        >;
    }
    Index
    CORD: EnumInstance<"UNRECOGNIZED" | "STRING" | "CORD" | "STRING_PIECE">

    The option [ctype=CORD] may be applied to a non-repeated field of type "bytes". It indicates that in C++, the data should be stored in a Cord instead of a string. For very large strings, this may reduce memory fragmentation. It may also allow better performance when parsing from a Cord, or when parsing with aliasing enabled, as the parsed Cord may then alias the original buffer.

    STRING: EnumInstance<"UNRECOGNIZED" | "STRING" | "CORD" | "STRING_PIECE">

    Default mode.

    STRING_PIECE: EnumInstance<"UNRECOGNIZED" | "STRING" | "CORD" | "STRING_PIECE">

    Represents the STRING_PIECE protobuf enum value.