indexed

package
v3.11.7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 22, 2022 License: Apache-2.0 Imports: 0 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Optional

type Optional interface{}

Optional is a type scan destination of optional ydb values Optional must be a double pointer value destination

This is a proxy type for preparing go1.18 type set constrains such as

type Optional interface {
  **int8 | **int64 | **string | types.Scanner
}

or alias such as

type Optional *Required

type Required

type Required interface{}

Required is a type scan destination of non-optional ydb values Required must be a single pointer value destination

This is a proxy type for preparing go1.18 type set constrains such as

type Required interface {
  *int8 | *int64 | *string | types.Scanner
}

type RequiredOrOptional

type RequiredOrOptional interface{}

RequiredOrOptional is a type scan destination of ydb values This is a proxy type for preparing go1.18 type set constrains such as

type Value interface {
  Required | Optional
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL