package io
Import Path
io (on go.dev )
Dependency Relation
imports 2 packages , and imported by 47 packages
Code Examples
Copy
package main
import (
"io"
"log"
"os"
"strings"
)
func main() {
r := strings.NewReader("some io.Reader stream to be read\n")
if _, err := io.Copy(os.Stdout, r); err != nil {
log.Fatal(err)
}
}
CopyBuffer
package main
import (
"io"
"log"
"os"
"strings"
)
func main() {
r1 := strings.NewReader("first reader\n")
r2 := strings.NewReader("second reader\n")
buf := make([]byte, 8)
// buf is used here...
if _, err := io.CopyBuffer(os.Stdout, r1, buf); err != nil {
log.Fatal(err)
}
// ... reused here also. No need to allocate an extra buffer.
if _, err := io.CopyBuffer(os.Stdout, r2, buf); err != nil {
log.Fatal(err)
}
}
CopyN
package main
import (
"io"
"log"
"os"
"strings"
)
func main() {
r := strings.NewReader("some io.Reader stream to be read")
if _, err := io.CopyN(os.Stdout, r, 4); err != nil {
log.Fatal(err)
}
}
LimitReader
package main
import (
"io"
"log"
"os"
"strings"
)
func main() {
r := strings.NewReader("some io.Reader stream to be read\n")
lr := io.LimitReader(r, 4)
if _, err := io.Copy(os.Stdout, lr); err != nil {
log.Fatal(err)
}
}
MultiReader
package main
import (
"io"
"log"
"os"
"strings"
)
func main() {
r1 := strings.NewReader("first reader ")
r2 := strings.NewReader("second reader ")
r3 := strings.NewReader("third reader\n")
r := io.MultiReader(r1, r2, r3)
if _, err := io.Copy(os.Stdout, r); err != nil {
log.Fatal(err)
}
}
MultiWriter
package main
import (
"fmt"
"io"
"log"
"strings"
)
func main() {
r := strings.NewReader("some io.Reader stream to be read\n")
var buf1, buf2 strings.Builder
w := io.MultiWriter(&buf1, &buf2)
if _, err := io.Copy(w, r); err != nil {
log.Fatal(err)
}
fmt.Print(buf1.String())
fmt.Print(buf2.String())
}
Pipe
package main
import (
"fmt"
"io"
"log"
"os"
)
func main() {
r, w := io.Pipe()
go func() {
fmt.Fprint(w, "some io.Reader stream to be read\n")
w.Close()
}()
if _, err := io.Copy(os.Stdout, r); err != nil {
log.Fatal(err)
}
}
ReadAll
package main
import (
"fmt"
"io"
"log"
"strings"
)
func main() {
r := strings.NewReader("Go is a general-purpose language designed with systems programming in mind.")
b, err := io.ReadAll(r)
if err != nil {
log.Fatal(err)
}
fmt.Printf("%s", b)
}
ReadAtLeast
package main
import (
"fmt"
"io"
"log"
"strings"
)
func main() {
r := strings.NewReader("some io.Reader stream to be read\n")
buf := make([]byte, 14)
if _, err := io.ReadAtLeast(r, buf, 4); err != nil {
log.Fatal(err)
}
fmt.Printf("%s\n", buf)
// buffer smaller than minimal read size.
shortBuf := make([]byte, 3)
if _, err := io.ReadAtLeast(r, shortBuf, 4); err != nil {
fmt.Println("error:", err)
}
// minimal read size bigger than io.Reader stream
longBuf := make([]byte, 64)
if _, err := io.ReadAtLeast(r, longBuf, 64); err != nil {
fmt.Println("error:", err)
}
}
ReadFull
package main
import (
"fmt"
"io"
"log"
"strings"
)
func main() {
r := strings.NewReader("some io.Reader stream to be read\n")
buf := make([]byte, 4)
if _, err := io.ReadFull(r, buf); err != nil {
log.Fatal(err)
}
fmt.Printf("%s\n", buf)
// minimal read size bigger than io.Reader stream
longBuf := make([]byte, 64)
if _, err := io.ReadFull(r, longBuf); err != nil {
fmt.Println("error:", err)
}
}
SectionReader
package main
import (
"io"
"log"
"os"
"strings"
)
func main() {
r := strings.NewReader("some io.Reader stream to be read\n")
s := io.NewSectionReader(r, 5, 17)
if _, err := io.Copy(os.Stdout, s); err != nil {
log.Fatal(err)
}
}
SectionReader_Read
package main
import (
"fmt"
"io"
"log"
"strings"
)
func main() {
r := strings.NewReader("some io.Reader stream to be read\n")
s := io.NewSectionReader(r, 5, 17)
buf := make([]byte, 9)
if _, err := s.Read(buf); err != nil {
log.Fatal(err)
}
fmt.Printf("%s\n", buf)
}
SectionReader_ReadAt
package main
import (
"fmt"
"io"
"log"
"strings"
)
func main() {
r := strings.NewReader("some io.Reader stream to be read\n")
s := io.NewSectionReader(r, 5, 17)
buf := make([]byte, 6)
if _, err := s.ReadAt(buf, 10); err != nil {
log.Fatal(err)
}
fmt.Printf("%s\n", buf)
}
SectionReader_Seek
package main
import (
"io"
"log"
"os"
"strings"
)
func main() {
r := strings.NewReader("some io.Reader stream to be read\n")
s := io.NewSectionReader(r, 5, 17)
if _, err := s.Seek(10, io.SeekStart); err != nil {
log.Fatal(err)
}
if _, err := io.Copy(os.Stdout, s); err != nil {
log.Fatal(err)
}
}
SectionReader_Size
package main
import (
"fmt"
"io"
"strings"
)
func main() {
r := strings.NewReader("some io.Reader stream to be read\n")
s := io.NewSectionReader(r, 5, 17)
fmt.Println(s.Size())
}
Seeker_Seek
package main
import (
"io"
"log"
"os"
"strings"
)
func main() {
r := strings.NewReader("some io.Reader stream to be read\n")
r.Seek(5, io.SeekStart) // move to the 5th char from the start
if _, err := io.Copy(os.Stdout, r); err != nil {
log.Fatal(err)
}
r.Seek(-5, io.SeekEnd)
if _, err := io.Copy(os.Stdout, r); err != nil {
log.Fatal(err)
}
}
TeeReader
package main
import (
"io"
"log"
"os"
"strings"
)
func main() {
var r io.Reader = strings.NewReader("some io.Reader stream to be read\n")
r = io.TeeReader(r, os.Stdout)
// Everything read from r will be copied to stdout.
if _, err := io.ReadAll(r); err != nil {
log.Fatal(err)
}
}
WriteString
package main
import (
"io"
"log"
"os"
)
func main() {
if _, err := io.WriteString(os.Stdout, "Hello World"); err != nil {
log.Fatal(err)
}
}
Package-Level Type Names (total 36, in which 27 are exported)
/* sort exporteds by: alphabet | popularity */
type ByteScanner (interface)
ByteScanner is the interface that adds the UnreadByte method to the
basic ReadByte method.
UnreadByte causes the next call to ReadByte to return the last byte read.
If the last operation was not a successful call to ReadByte, UnreadByte may
return an error, unread the last byte read (or the byte prior to the
last-unread byte), or (in implementations that support the [Seeker] interface)
seek to one byte before the current offset.
Methods (total 2, both are exported )
( ByteScanner) ReadByte () (byte , error )
( ByteScanner) UnreadByte () error
Implemented By (at least 7, in which 5 are exported )
*bufio.Reader
bufio.ReadWriter
*bytes.Buffer
*bytes.Reader
*strings.Reader
/* 2+ unexporteds ... */ /* 2+ unexporteds: */
*encoding/json.encodeState
math/big.byteReader
Implements (at least one exported )
ByteScanner : ByteReader
As Inputs Of (at least 5, none are exported )
/* 5+ unexporteds ... */ /* 5+ unexporteds: */
func math/big.scanExponent (r ByteScanner , base2ok, sepOk bool ) (exp int64 , base int , err error )
func math/big.scanSign (r ByteScanner ) (neg bool , err error )
func math/big.(*Float ).scan (r ByteScanner , base int ) (f *big .Float , b int , err error )
func math/big.(*Int ).scan (r ByteScanner , base int ) (*big .Int , int , error )
func math/big.(*Int ).setFromScanner (r ByteScanner , base int ) (*big .Int , bool )
type ReadCloser (interface)
ReadCloser is the interface that groups the basic Read and Close methods.
Methods (total 2, both are exported )
( ReadCloser) Close () error
( ReadCloser) Read (p []byte ) (n int , err error )
Implemented By (at least 47, in which 17 are exported )
*PipeReader
ReadSeekCloser (interface)
ReadWriteCloser (interface)
io/fs.File (interface)
io/fs.ReadDirFile (interface)
*compress/gzip.Reader
*crypto/tls.Conn
*internal/poll.FD
mime/multipart.File (interface)
*mime/multipart.Part
net.Conn (interface)
*net.IPConn
*net.TCPConn
*net.UDPConn
*net.UnixConn
net/http.File (interface)
*os.File
/* 30+ unexporteds ... */ /* 30+ unexporteds: */
nopCloser
nopCloserWriterTo
*compress/flate.decompressor
*embed.openDir
*embed.openFile
mime/multipart.sectionReadCloser
*net.conn
*net.netFD
*net.pipe
net.tcpConnWithoutReadFrom
net.tcpConnWithoutWriteTo
*net/http.body
*net/http.bodyEOFSignal
*net/http.cancelTimerBody
*net/http.expectContinueReader
*net/http.gzipReader
*net/http.http2gzipReader
net/http.http2missingBody
net/http.http2noBodyReader
*net/http.http2requestBody
net/http.http2transportResponseBody
net/http.ioFile
*net/http.loggingConn
*net/http.maxBytesReader
net/http.noBody
*net/http.readTrackingBody
*net/http.readWriteCloserBody
net/http.socksConn
os.fileWithoutReadFrom
os.fileWithoutWriteTo
Implements (at least 2, both are exported )
ReadCloser : Closer
ReadCloser : Reader
As Outputs Of (at least 5, all are exported )
func NopCloser (r Reader ) ReadCloser
func compress/flate.NewReader (r Reader ) ReadCloser
func compress/flate.NewReaderDict (r Reader , dict []byte ) ReadCloser
func github.com/oapi-codegen/runtime/types.File .Reader () (ReadCloser , error )
func net/http.MaxBytesReader (w http .ResponseWriter , r ReadCloser , n int64 ) ReadCloser
As Inputs Of (at least 3, in which 1 is exported )
func net/http.MaxBytesReader (w http .ResponseWriter , r ReadCloser , n int64 ) ReadCloser
/* 2+ unexporteds ... */ /* 2+ unexporteds: */
func net/http.registerOnHitEOF (rc ReadCloser , fn func())
func net/http.requestBodyRemains (rc ReadCloser ) bool
As Types Of (only one, which is unexported )
/* one unexported ... */ /* one unexported: */
var net/http.http2noBody
type Reader (interface)
Reader is the interface that wraps the basic Read method.
Read reads up to len(p) bytes into p. It returns the number of bytes
read (0 <= n <= len(p)) and any error encountered. Even if Read
returns n < len(p), it may use all of p as scratch space during the call.
If some data is available but not len(p) bytes, Read conventionally
returns what is available instead of waiting for more.
When Read encounters an error or end-of-file condition after
successfully reading n > 0 bytes, it returns the number of
bytes read. It may return the (non-nil) error from the same call
or return the error (and n == 0) from a subsequent call.
An instance of this general case is that a Reader returning
a non-zero number of bytes at the end of the input stream may
return either err == EOF or err == nil. The next Read should
return 0, EOF.
Callers should always process the n > 0 bytes returned before
considering the error err. Doing so correctly handles I/O errors
that happen after reading some bytes and also both of the
allowed EOF behaviors.
If len(p) == 0, Read should always return n == 0. It may return a
non-nil error if some error condition is known, such as EOF.
Implementations of Read are discouraged from returning a
zero byte count with a nil error, except when len(p) == 0.
Callers should treat a return of 0 and nil as indicating that
nothing happened; in particular it does not indicate EOF.
Implementations must not retain p.
Methods (only one, which is exported )
( Reader) Read (p []byte ) (n int , err error )
Implemented By (at least 100, in which 37 are exported )
*LimitedReader
*PipeReader
ReadCloser (interface)
ReadSeekCloser (interface)
ReadSeeker (interface)
ReadWriteCloser (interface)
ReadWriter (interface)
ReadWriteSeeker (interface)
*SectionReader
io/fs.File (interface)
io/fs.ReadDirFile (interface)
*bufio.Reader
bufio.ReadWriter
*bytes.Buffer
*bytes.Reader
compress/flate.Reader (interface)
*compress/gzip.Reader
crypto/cipher.StreamReader
*crypto/tls.Conn
fmt.ScanState (interface)
*internal/poll.FD
*math/rand.Rand
*math/rand/v2.ChaCha8
mime/multipart.File (interface)
*mime/multipart.Part
*mime/quotedprintable.Reader
*net.Buffers
net.Conn (interface)
*net.IPConn
*net.TCPConn
*net.UDPConn
*net.UnixConn
net/http.File (interface)
*os.File
*strings.Reader
vendor/golang.org/x/crypto/sha3.ShakeHash (interface)
*vendor/golang.org/x/text/transform.Reader
/* 63+ unexporteds ... */ /* 63+ unexporteds: */
eofReader
*multiReader
nopCloser
nopCloserWriterTo
*teeReader
*compress/flate.decompressor
crypto/ecdsa.zr
crypto/internal/boring.randReader
crypto/rand.hideAgainReader
*crypto/rand.reader
*crypto/tls.atLeastReader
*embed.openDir
*embed.openFile
*encoding/base64.decoder
*encoding/base64.newlineFilteringReader
*encoding/hex.decoder
*encoding/json.encodeState
*fmt.ss
*fmt.stringReader
math/big.byteReader
mime/multipart.partReader
mime/multipart.sectionReadCloser
*mime/multipart.stickyErrorReader
*net.conn
*net.netFD
*net.pipe
net.tcpConnWithoutReadFrom
net.tcpConnWithoutWriteTo
*net/http.body
*net/http.bodyEOFSignal
net/http.bodyLocked
*net/http.byteReader
*net/http.cancelTimerBody
*net/http.connReader
net/http.errorReader
*net/http.expectContinueReader
net/http.finishAsyncByteRead
*net/http.gzipReader
*net/http.http2dataBuffer
net/http.http2errorReader
*net/http.http2gzipReader
net/http.http2missingBody
net/http.http2noBodyReader
*net/http.http2pipe
net/http.http2pipeBuffer (interface)
*net/http.http2requestBody
net/http.http2transportResponseBody
net/http.ioFile
*net/http.loggingConn
*net/http.maxBytesReader
net/http.noBody
*net/http.persistConn
*net/http.readTrackingBody
*net/http.readWriteCloserBody
net/http.socksConn
*net/http/internal.chunkedReader
*net/textproto.dotReader
os.fileWithoutReadFrom
os.fileWithoutWriteTo
*vendor/golang.org/x/crypto/hkdf.hkdf
vendor/golang.org/x/crypto/sha3.cshakeState
*vendor/golang.org/x/crypto/sha3.state
*vendor/golang.org/x/text/unicode/norm.normReader
As Outputs Of (at least 15, in which 11 are exported )
func LimitReader (r Reader , n int64 ) Reader
func MultiReader (readers ...Reader ) Reader
func TeeReader (r Reader , w Writer ) Reader
func encoding/base64.NewDecoder (enc *base64 .Encoding , r Reader ) Reader
func encoding/hex.NewDecoder (r Reader ) Reader
func encoding/json.(*Decoder ).Buffered () Reader
func net/http/internal.NewChunkedReader (r Reader ) Reader
func net/textproto.(*Reader ).DotReader () Reader
func vendor/golang.org/x/crypto/hkdf.Expand (hash func() hash .Hash , pseudorandomKey, info []byte ) Reader
func vendor/golang.org/x/crypto/hkdf.New (hash func() hash .Hash , secret, salt, info []byte ) Reader
func vendor/golang.org/x/text/unicode/norm.Form .Reader (r Reader ) Reader
/* 4+ unexporteds ... */ /* 4+ unexporteds: */
func crypto/ecdsa.mixedCSPRNG (rand Reader , priv *ecdsa .PrivateKey , hash []byte ) (Reader , error )
func crypto/tls.(*Config ).rand () Reader
func net/http.unwrapNopCloser (r Reader ) (underlyingReader Reader , isNopCloser bool )
func os.tryLimitedReader (r Reader ) (*LimitedReader , Reader , int64 )
As Inputs Of (at least 331, in which 300 are exported )
func Copy (dst Writer , src Reader ) (written int64 , err error )
func CopyBuffer (dst Writer , src Reader , buf []byte ) (written int64 , err error )
func CopyN (dst Writer , src Reader , n int64 ) (written int64 , err error )
func LimitReader (r Reader , n int64 ) Reader
func MultiReader (readers ...Reader ) Reader
func NopCloser (r Reader ) ReadCloser
func ReadAll (r Reader ) ([]byte , error )
func ReadAtLeast (r Reader , buf []byte , min int ) (n int , err error )
func ReadFull (r Reader , buf []byte ) (n int , err error )
func TeeReader (r Reader , w Writer ) Reader
func ReaderFrom .ReadFrom (r Reader ) (n int64 , err error )
func bufio.NewReader (rd Reader ) *bufio .Reader
func bufio.NewReaderSize (rd Reader , size int ) *bufio .Reader
func bufio.NewScanner (r Reader ) *bufio .Scanner
func bufio.(*Reader ).Reset (r Reader )
func bufio.(*Writer ).ReadFrom (r Reader ) (n int64 , err error )
func bytes.(*Buffer ).ReadFrom (r Reader ) (n int64 , err error )
func compress/flate.NewReader (r Reader ) ReadCloser
func compress/flate.NewReaderDict (r Reader , dict []byte ) ReadCloser
func compress/flate.Resetter .Reset (r Reader , dict []byte ) error
func compress/gzip.NewReader (r Reader ) (*gzip .Reader , error )
func compress/gzip.(*Reader ).Reset (r Reader ) error
func crypto.Decrypter .Decrypt (rand Reader , msg []byte , opts crypto .DecrypterOpts ) (plaintext []byte , err error )
func crypto.Signer .Sign (rand Reader , digest []byte , opts crypto .SignerOpts ) (signature []byte , err error )
func crypto/dsa.GenerateKey (priv *dsa .PrivateKey , rand Reader ) error
func crypto/dsa.GenerateParameters (params *dsa .Parameters , rand Reader , sizes dsa .ParameterSizes ) error
func crypto/dsa.Sign (rand Reader , priv *dsa .PrivateKey , hash []byte ) (r, s *big .Int , err error )
func crypto/ecdh.Curve .GenerateKey (rand Reader ) (*ecdh .PrivateKey , error )
func crypto/ecdsa.GenerateKey (c elliptic .Curve , rand Reader ) (*ecdsa .PrivateKey , error )
func crypto/ecdsa.Sign (rand Reader , priv *ecdsa .PrivateKey , hash []byte ) (r, s *big .Int , err error )
func crypto/ecdsa.SignASN1 (rand Reader , priv *ecdsa .PrivateKey , hash []byte ) ([]byte , error )
func crypto/ecdsa.(*PrivateKey ).Sign (rand Reader , digest []byte , opts crypto .SignerOpts ) ([]byte , error )
func crypto/ed25519.GenerateKey (rand Reader ) (ed25519 .PublicKey , ed25519 .PrivateKey , error )
func crypto/ed25519.PrivateKey .Sign (rand Reader , message []byte , opts crypto .SignerOpts ) (signature []byte , err error )
func crypto/elliptic.GenerateKey (curve elliptic .Curve , rand Reader ) (priv []byte , x, y *big .Int , err error )
func crypto/internal/randutil.MaybeReadByte (r Reader )
func crypto/rand.Int (rand Reader , max *big .Int ) (n *big .Int , err error )
func crypto/rand.Prime (rand Reader , bits int ) (*big .Int , error )
func crypto/rsa.DecryptOAEP (hash hash .Hash , random Reader , priv *rsa .PrivateKey , ciphertext []byte , label []byte ) ([]byte , error )
func crypto/rsa.DecryptPKCS1v15 (random Reader , priv *rsa .PrivateKey , ciphertext []byte ) ([]byte , error )
func crypto/rsa.DecryptPKCS1v15SessionKey (random Reader , priv *rsa .PrivateKey , ciphertext []byte , key []byte ) error
func crypto/rsa.EncryptOAEP (hash hash .Hash , random Reader , pub *rsa .PublicKey , msg []byte , label []byte ) ([]byte , error )
func crypto/rsa.EncryptPKCS1v15 (random Reader , pub *rsa .PublicKey , msg []byte ) ([]byte , error )
func crypto/rsa.GenerateKey (random Reader , bits int ) (*rsa .PrivateKey , error )
func crypto/rsa.GenerateMultiPrimeKey (random Reader , nprimes int , bits int ) (*rsa .PrivateKey , error )
func crypto/rsa.SignPKCS1v15 (random Reader , priv *rsa .PrivateKey , hash crypto .Hash , hashed []byte ) ([]byte , error )
func crypto/rsa.SignPSS (rand Reader , priv *rsa .PrivateKey , hash crypto .Hash , digest []byte , opts *rsa .PSSOptions ) ([]byte , error )
func crypto/rsa.(*PrivateKey ).Decrypt (rand Reader , ciphertext []byte , opts crypto .DecrypterOpts ) (plaintext []byte , err error )
func crypto/rsa.(*PrivateKey ).Sign (rand Reader , digest []byte , opts crypto .SignerOpts ) ([]byte , error )
func crypto/x509.CreateCertificate (rand Reader , template, parent *x509 .Certificate , pub, priv any ) ([]byte , error )
func crypto/x509.CreateCertificateRequest (rand Reader , template *x509 .CertificateRequest , priv any ) (csr []byte , err error )
func crypto/x509.CreateRevocationList (rand Reader , template *x509 .RevocationList , issuer *x509 .Certificate , priv crypto .Signer ) ([]byte , error )
func crypto/x509.EncryptPEMBlock (rand Reader , blockType string , data, password []byte , alg x509 .PEMCipher ) (*pem .Block , error )
func crypto/x509.(*Certificate ).CreateCRL (rand Reader , priv any , revokedCerts []pkix .RevokedCertificate , now, expiry time .Time ) (crlBytes []byte , err error )
func encoding/base64.NewDecoder (enc *base64 .Encoding , r Reader ) Reader
func encoding/binary.Read (r Reader , order binary .ByteOrder , data any ) error
func encoding/hex.NewDecoder (r Reader ) Reader
func encoding/json.NewDecoder (r Reader ) *json .Decoder
func fmt.Fscan (r Reader , a ...any ) (n int , err error )
func fmt.Fscanf (r Reader , format string , a ...any ) (n int , err error )
func fmt.Fscanln (r Reader , a ...any ) (n int , err error )
func github.com/coinbase/cdp-sdk/go/openapi.NewAddEndUserEvmAccountRequestWithBody (server string , userId string , params *openapi .AddEndUserEvmAccountParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewAddEndUserEvmSmartAccountRequestWithBody (server string , userId string , params *openapi .AddEndUserEvmSmartAccountParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewAddEndUserSolanaAccountRequestWithBody (server string , userId string , params *openapi .AddEndUserSolanaAccountParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewCreateEndUserRequestWithBody (server string , params *openapi .CreateEndUserParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewCreateEvmAccountRequestWithBody (server string , params *openapi .CreateEvmAccountParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewCreateEvmEip7702DelegationRequestWithBody (server string , address string , params *openapi .CreateEvmEip7702DelegationParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewCreateEvmSmartAccountRequestWithBody (server string , params *openapi .CreateEvmSmartAccountParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewCreateEvmSwapQuoteRequestWithBody (server string , params *openapi .CreateEvmSwapQuoteParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewCreateOnrampOrderRequestWithBody (server string , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewCreateOnrampSessionRequestWithBody (server string , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewCreatePolicyRequestWithBody (server string , params *openapi .CreatePolicyParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewCreateSolanaAccountRequestWithBody (server string , params *openapi .CreateSolanaAccountParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewCreateSpendPermissionRequestWithBody (server string , address string , params *openapi .CreateSpendPermissionParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewCreateWebhookSubscriptionRequestWithBody (server string , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewExportEvmAccountByNameRequestWithBody (server string , name string , params *openapi .ExportEvmAccountByNameParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewExportEvmAccountRequestWithBody (server string , address string , params *openapi .ExportEvmAccountParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewExportSolanaAccountByNameRequestWithBody (server string , name string , params *openapi .ExportSolanaAccountByNameParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewExportSolanaAccountRequestWithBody (server string , address string , params *openapi .ExportSolanaAccountParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewGetOnrampUserLimitsRequestWithBody (server string , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewImportEndUserRequestWithBody (server string , params *openapi .ImportEndUserParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewImportEvmAccountRequestWithBody (server string , params *openapi .ImportEvmAccountParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewImportSolanaAccountRequestWithBody (server string , params *openapi .ImportSolanaAccountParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewPrepareAndSendUserOperationRequestWithBody (server string , address string , params *openapi .PrepareAndSendUserOperationParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewPrepareUserOperationRequestWithBody (server string , address string , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewRequestEvmFaucetRequestWithBody (server string , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewRequestSolanaFaucetRequestWithBody (server string , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewRevokeSpendPermissionRequestWithBody (server string , address string , params *openapi .RevokeSpendPermissionParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewRunSQLQueryRequestWithBody (server string , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewSendEvmTransactionRequestWithBody (server string , address string , params *openapi .SendEvmTransactionParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewSendSolanaTransactionRequestWithBody (server string , params *openapi .SendSolanaTransactionParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewSendUserOperationRequestWithBody (server string , address string , userOpHash string , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewSettleX402PaymentRequestWithBody (server string , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewSignEvmHashRequestWithBody (server string , address string , params *openapi .SignEvmHashParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewSignEvmMessageRequestWithBody (server string , address string , params *openapi .SignEvmMessageParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewSignEvmTransactionRequestWithBody (server string , address string , params *openapi .SignEvmTransactionParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewSignEvmTypedDataRequestWithBody (server string , address string , params *openapi .SignEvmTypedDataParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewSignSolanaMessageRequestWithBody (server string , address string , params *openapi .SignSolanaMessageParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewSignSolanaTransactionRequestWithBody (server string , address string , params *openapi .SignSolanaTransactionParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewUpdateEvmAccountRequestWithBody (server string , address string , params *openapi .UpdateEvmAccountParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewUpdateEvmSmartAccountRequestWithBody (server string , address string , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewUpdatePolicyRequestWithBody (server string , policyId string , params *openapi .UpdatePolicyParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewUpdateSolanaAccountRequestWithBody (server string , address string , params *openapi .UpdateSolanaAccountParams , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewUpdateWebhookSubscriptionRequestWithBody (server string , subscriptionId openapi_types .UUID , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewValidateEndUserAccessTokenRequestWithBody (server string , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.NewVerifyX402PaymentRequestWithBody (server string , contentType string , body Reader ) (*http .Request , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).AddEndUserEvmAccountWithBody (ctx context .Context , userId string , params *openapi .AddEndUserEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).AddEndUserEvmSmartAccountWithBody (ctx context .Context , userId string , params *openapi .AddEndUserEvmSmartAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).AddEndUserSolanaAccountWithBody (ctx context .Context , userId string , params *openapi .AddEndUserSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).CreateEndUserWithBody (ctx context .Context , params *openapi .CreateEndUserParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).CreateEvmAccountWithBody (ctx context .Context , params *openapi .CreateEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).CreateEvmEip7702DelegationWithBody (ctx context .Context , address string , params *openapi .CreateEvmEip7702DelegationParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).CreateEvmSmartAccountWithBody (ctx context .Context , params *openapi .CreateEvmSmartAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).CreateEvmSwapQuoteWithBody (ctx context .Context , params *openapi .CreateEvmSwapQuoteParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).CreateOnrampOrderWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).CreateOnrampSessionWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).CreatePolicyWithBody (ctx context .Context , params *openapi .CreatePolicyParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).CreateSolanaAccountWithBody (ctx context .Context , params *openapi .CreateSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).CreateSpendPermissionWithBody (ctx context .Context , address string , params *openapi .CreateSpendPermissionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).CreateWebhookSubscriptionWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).ExportEvmAccountByNameWithBody (ctx context .Context , name string , params *openapi .ExportEvmAccountByNameParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).ExportEvmAccountWithBody (ctx context .Context , address string , params *openapi .ExportEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).ExportSolanaAccountByNameWithBody (ctx context .Context , name string , params *openapi .ExportSolanaAccountByNameParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).ExportSolanaAccountWithBody (ctx context .Context , address string , params *openapi .ExportSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).GetOnrampUserLimitsWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).ImportEndUserWithBody (ctx context .Context , params *openapi .ImportEndUserParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).ImportEvmAccountWithBody (ctx context .Context , params *openapi .ImportEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).ImportSolanaAccountWithBody (ctx context .Context , params *openapi .ImportSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).PrepareAndSendUserOperationWithBody (ctx context .Context , address string , params *openapi .PrepareAndSendUserOperationParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).PrepareUserOperationWithBody (ctx context .Context , address string , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).RequestEvmFaucetWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).RequestSolanaFaucetWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).RevokeSpendPermissionWithBody (ctx context .Context , address string , params *openapi .RevokeSpendPermissionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).RunSQLQueryWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).SendEvmTransactionWithBody (ctx context .Context , address string , params *openapi .SendEvmTransactionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).SendSolanaTransactionWithBody (ctx context .Context , params *openapi .SendSolanaTransactionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).SendUserOperationWithBody (ctx context .Context , address string , userOpHash string , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).SettleX402PaymentWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).SignEvmHashWithBody (ctx context .Context , address string , params *openapi .SignEvmHashParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).SignEvmMessageWithBody (ctx context .Context , address string , params *openapi .SignEvmMessageParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).SignEvmTransactionWithBody (ctx context .Context , address string , params *openapi .SignEvmTransactionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).SignEvmTypedDataWithBody (ctx context .Context , address string , params *openapi .SignEvmTypedDataParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).SignSolanaMessageWithBody (ctx context .Context , address string , params *openapi .SignSolanaMessageParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).SignSolanaTransactionWithBody (ctx context .Context , address string , params *openapi .SignSolanaTransactionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).UpdateEvmAccountWithBody (ctx context .Context , address string , params *openapi .UpdateEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).UpdateEvmSmartAccountWithBody (ctx context .Context , address string , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).UpdatePolicyWithBody (ctx context .Context , policyId string , params *openapi .UpdatePolicyParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).UpdateSolanaAccountWithBody (ctx context .Context , address string , params *openapi .UpdateSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).UpdateWebhookSubscriptionWithBody (ctx context .Context , subscriptionId openapi_types .UUID , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).ValidateEndUserAccessTokenWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*CDPClient ).VerifyX402PaymentWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .AddEndUserEvmAccountWithBody (ctx context .Context , userId string , params *openapi .AddEndUserEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .AddEndUserEvmSmartAccountWithBody (ctx context .Context , userId string , params *openapi .AddEndUserEvmSmartAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .AddEndUserSolanaAccountWithBody (ctx context .Context , userId string , params *openapi .AddEndUserSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .CreateEndUserWithBody (ctx context .Context , params *openapi .CreateEndUserParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .CreateEvmAccountWithBody (ctx context .Context , params *openapi .CreateEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .CreateEvmEip7702DelegationWithBody (ctx context .Context , address string , params *openapi .CreateEvmEip7702DelegationParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .CreateEvmSmartAccountWithBody (ctx context .Context , params *openapi .CreateEvmSmartAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .CreateEvmSwapQuoteWithBody (ctx context .Context , params *openapi .CreateEvmSwapQuoteParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .CreateOnrampOrderWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .CreateOnrampSessionWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .CreatePolicyWithBody (ctx context .Context , params *openapi .CreatePolicyParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .CreateSolanaAccountWithBody (ctx context .Context , params *openapi .CreateSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .CreateSpendPermissionWithBody (ctx context .Context , address string , params *openapi .CreateSpendPermissionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .CreateWebhookSubscriptionWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .ExportEvmAccountByNameWithBody (ctx context .Context , name string , params *openapi .ExportEvmAccountByNameParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .ExportEvmAccountWithBody (ctx context .Context , address string , params *openapi .ExportEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .ExportSolanaAccountByNameWithBody (ctx context .Context , name string , params *openapi .ExportSolanaAccountByNameParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .ExportSolanaAccountWithBody (ctx context .Context , address string , params *openapi .ExportSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .GetOnrampUserLimitsWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .ImportEndUserWithBody (ctx context .Context , params *openapi .ImportEndUserParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .ImportEvmAccountWithBody (ctx context .Context , params *openapi .ImportEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .ImportSolanaAccountWithBody (ctx context .Context , params *openapi .ImportSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .PrepareAndSendUserOperationWithBody (ctx context .Context , address string , params *openapi .PrepareAndSendUserOperationParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .PrepareUserOperationWithBody (ctx context .Context , address string , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .RequestEvmFaucetWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .RequestSolanaFaucetWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .RevokeSpendPermissionWithBody (ctx context .Context , address string , params *openapi .RevokeSpendPermissionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .RunSQLQueryWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .SendEvmTransactionWithBody (ctx context .Context , address string , params *openapi .SendEvmTransactionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .SendSolanaTransactionWithBody (ctx context .Context , params *openapi .SendSolanaTransactionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .SendUserOperationWithBody (ctx context .Context , address string , userOpHash string , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .SettleX402PaymentWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .SignEvmHashWithBody (ctx context .Context , address string , params *openapi .SignEvmHashParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .SignEvmMessageWithBody (ctx context .Context , address string , params *openapi .SignEvmMessageParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .SignEvmTransactionWithBody (ctx context .Context , address string , params *openapi .SignEvmTransactionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .SignEvmTypedDataWithBody (ctx context .Context , address string , params *openapi .SignEvmTypedDataParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .SignSolanaMessageWithBody (ctx context .Context , address string , params *openapi .SignSolanaMessageParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .SignSolanaTransactionWithBody (ctx context .Context , address string , params *openapi .SignSolanaTransactionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .UpdateEvmAccountWithBody (ctx context .Context , address string , params *openapi .UpdateEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .UpdateEvmSmartAccountWithBody (ctx context .Context , address string , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .UpdatePolicyWithBody (ctx context .Context , policyId string , params *openapi .UpdatePolicyParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .UpdateSolanaAccountWithBody (ctx context .Context , address string , params *openapi .UpdateSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .UpdateWebhookSubscriptionWithBody (ctx context .Context , subscriptionId openapi_types .UUID , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .ValidateEndUserAccessTokenWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientInterface .VerifyX402PaymentWithBody (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*http .Response , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).AddEndUserEvmAccountWithBodyWithResponse (ctx context .Context , userId string , params *openapi .AddEndUserEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .AddEndUserEvmAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).AddEndUserEvmSmartAccountWithBodyWithResponse (ctx context .Context , userId string , params *openapi .AddEndUserEvmSmartAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .AddEndUserEvmSmartAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).AddEndUserSolanaAccountWithBodyWithResponse (ctx context .Context , userId string , params *openapi .AddEndUserSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .AddEndUserSolanaAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).CreateEndUserWithBodyWithResponse (ctx context .Context , params *openapi .CreateEndUserParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateEndUserResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).CreateEvmAccountWithBodyWithResponse (ctx context .Context , params *openapi .CreateEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateEvmAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).CreateEvmEip7702DelegationWithBodyWithResponse (ctx context .Context , address string , params *openapi .CreateEvmEip7702DelegationParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateEvmEip7702DelegationResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).CreateEvmSmartAccountWithBodyWithResponse (ctx context .Context , params *openapi .CreateEvmSmartAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateEvmSmartAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).CreateEvmSwapQuoteWithBodyWithResponse (ctx context .Context , params *openapi .CreateEvmSwapQuoteParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateEvmSwapQuoteResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).CreateOnrampOrderWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateOnrampOrderResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).CreateOnrampSessionWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateOnrampSessionResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).CreatePolicyWithBodyWithResponse (ctx context .Context , params *openapi .CreatePolicyParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreatePolicyResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).CreateSolanaAccountWithBodyWithResponse (ctx context .Context , params *openapi .CreateSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateSolanaAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).CreateSpendPermissionWithBodyWithResponse (ctx context .Context , address string , params *openapi .CreateSpendPermissionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateSpendPermissionResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).CreateWebhookSubscriptionWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateWebhookSubscriptionResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).ExportEvmAccountByNameWithBodyWithResponse (ctx context .Context , name string , params *openapi .ExportEvmAccountByNameParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .ExportEvmAccountByNameResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).ExportEvmAccountWithBodyWithResponse (ctx context .Context , address string , params *openapi .ExportEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .ExportEvmAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).ExportSolanaAccountByNameWithBodyWithResponse (ctx context .Context , name string , params *openapi .ExportSolanaAccountByNameParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .ExportSolanaAccountByNameResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).ExportSolanaAccountWithBodyWithResponse (ctx context .Context , address string , params *openapi .ExportSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .ExportSolanaAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).GetOnrampUserLimitsWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .GetOnrampUserLimitsResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).ImportEndUserWithBodyWithResponse (ctx context .Context , params *openapi .ImportEndUserParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .ImportEndUserResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).ImportEvmAccountWithBodyWithResponse (ctx context .Context , params *openapi .ImportEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .ImportEvmAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).ImportSolanaAccountWithBodyWithResponse (ctx context .Context , params *openapi .ImportSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .ImportSolanaAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).PrepareAndSendUserOperationWithBodyWithResponse (ctx context .Context , address string , params *openapi .PrepareAndSendUserOperationParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .PrepareAndSendUserOperationResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).PrepareUserOperationWithBodyWithResponse (ctx context .Context , address string , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .PrepareUserOperationResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).RequestEvmFaucetWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .RequestEvmFaucetResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).RequestSolanaFaucetWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .RequestSolanaFaucetResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).RevokeSpendPermissionWithBodyWithResponse (ctx context .Context , address string , params *openapi .RevokeSpendPermissionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .RevokeSpendPermissionResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).RunSQLQueryWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .RunSQLQueryResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).SendEvmTransactionWithBodyWithResponse (ctx context .Context , address string , params *openapi .SendEvmTransactionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SendEvmTransactionResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).SendSolanaTransactionWithBodyWithResponse (ctx context .Context , params *openapi .SendSolanaTransactionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SendSolanaTransactionResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).SendUserOperationWithBodyWithResponse (ctx context .Context , address string , userOpHash string , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SendUserOperationResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).SettleX402PaymentWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SettleX402PaymentResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).SignEvmHashWithBodyWithResponse (ctx context .Context , address string , params *openapi .SignEvmHashParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SignEvmHashResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).SignEvmMessageWithBodyWithResponse (ctx context .Context , address string , params *openapi .SignEvmMessageParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SignEvmMessageResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).SignEvmTransactionWithBodyWithResponse (ctx context .Context , address string , params *openapi .SignEvmTransactionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SignEvmTransactionResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).SignEvmTypedDataWithBodyWithResponse (ctx context .Context , address string , params *openapi .SignEvmTypedDataParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SignEvmTypedDataResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).SignSolanaMessageWithBodyWithResponse (ctx context .Context , address string , params *openapi .SignSolanaMessageParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SignSolanaMessageResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).SignSolanaTransactionWithBodyWithResponse (ctx context .Context , address string , params *openapi .SignSolanaTransactionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SignSolanaTransactionResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).UpdateEvmAccountWithBodyWithResponse (ctx context .Context , address string , params *openapi .UpdateEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .UpdateEvmAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).UpdateEvmSmartAccountWithBodyWithResponse (ctx context .Context , address string , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .UpdateEvmSmartAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).UpdatePolicyWithBodyWithResponse (ctx context .Context , policyId string , params *openapi .UpdatePolicyParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .UpdatePolicyResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).UpdateSolanaAccountWithBodyWithResponse (ctx context .Context , address string , params *openapi .UpdateSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .UpdateSolanaAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).UpdateWebhookSubscriptionWithBodyWithResponse (ctx context .Context , subscriptionId openapi_types .UUID , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .UpdateWebhookSubscriptionResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).ValidateEndUserAccessTokenWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .ValidateEndUserAccessTokenResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.(*ClientWithResponses ).VerifyX402PaymentWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .VerifyX402PaymentResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .AddEndUserEvmAccountWithBodyWithResponse (ctx context .Context , userId string , params *openapi .AddEndUserEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .AddEndUserEvmAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .AddEndUserEvmSmartAccountWithBodyWithResponse (ctx context .Context , userId string , params *openapi .AddEndUserEvmSmartAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .AddEndUserEvmSmartAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .AddEndUserSolanaAccountWithBodyWithResponse (ctx context .Context , userId string , params *openapi .AddEndUserSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .AddEndUserSolanaAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .CreateEndUserWithBodyWithResponse (ctx context .Context , params *openapi .CreateEndUserParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateEndUserResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .CreateEvmAccountWithBodyWithResponse (ctx context .Context , params *openapi .CreateEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateEvmAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .CreateEvmEip7702DelegationWithBodyWithResponse (ctx context .Context , address string , params *openapi .CreateEvmEip7702DelegationParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateEvmEip7702DelegationResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .CreateEvmSmartAccountWithBodyWithResponse (ctx context .Context , params *openapi .CreateEvmSmartAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateEvmSmartAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .CreateEvmSwapQuoteWithBodyWithResponse (ctx context .Context , params *openapi .CreateEvmSwapQuoteParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateEvmSwapQuoteResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .CreateOnrampOrderWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateOnrampOrderResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .CreateOnrampSessionWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateOnrampSessionResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .CreatePolicyWithBodyWithResponse (ctx context .Context , params *openapi .CreatePolicyParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreatePolicyResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .CreateSolanaAccountWithBodyWithResponse (ctx context .Context , params *openapi .CreateSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateSolanaAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .CreateSpendPermissionWithBodyWithResponse (ctx context .Context , address string , params *openapi .CreateSpendPermissionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateSpendPermissionResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .CreateWebhookSubscriptionWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .CreateWebhookSubscriptionResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .ExportEvmAccountByNameWithBodyWithResponse (ctx context .Context , name string , params *openapi .ExportEvmAccountByNameParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .ExportEvmAccountByNameResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .ExportEvmAccountWithBodyWithResponse (ctx context .Context , address string , params *openapi .ExportEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .ExportEvmAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .ExportSolanaAccountByNameWithBodyWithResponse (ctx context .Context , name string , params *openapi .ExportSolanaAccountByNameParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .ExportSolanaAccountByNameResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .ExportSolanaAccountWithBodyWithResponse (ctx context .Context , address string , params *openapi .ExportSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .ExportSolanaAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .GetOnrampUserLimitsWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .GetOnrampUserLimitsResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .ImportEndUserWithBodyWithResponse (ctx context .Context , params *openapi .ImportEndUserParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .ImportEndUserResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .ImportEvmAccountWithBodyWithResponse (ctx context .Context , params *openapi .ImportEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .ImportEvmAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .ImportSolanaAccountWithBodyWithResponse (ctx context .Context , params *openapi .ImportSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .ImportSolanaAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .PrepareAndSendUserOperationWithBodyWithResponse (ctx context .Context , address string , params *openapi .PrepareAndSendUserOperationParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .PrepareAndSendUserOperationResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .PrepareUserOperationWithBodyWithResponse (ctx context .Context , address string , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .PrepareUserOperationResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .RequestEvmFaucetWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .RequestEvmFaucetResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .RequestSolanaFaucetWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .RequestSolanaFaucetResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .RevokeSpendPermissionWithBodyWithResponse (ctx context .Context , address string , params *openapi .RevokeSpendPermissionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .RevokeSpendPermissionResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .RunSQLQueryWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .RunSQLQueryResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .SendEvmTransactionWithBodyWithResponse (ctx context .Context , address string , params *openapi .SendEvmTransactionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SendEvmTransactionResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .SendSolanaTransactionWithBodyWithResponse (ctx context .Context , params *openapi .SendSolanaTransactionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SendSolanaTransactionResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .SendUserOperationWithBodyWithResponse (ctx context .Context , address string , userOpHash string , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SendUserOperationResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .SettleX402PaymentWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SettleX402PaymentResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .SignEvmHashWithBodyWithResponse (ctx context .Context , address string , params *openapi .SignEvmHashParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SignEvmHashResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .SignEvmMessageWithBodyWithResponse (ctx context .Context , address string , params *openapi .SignEvmMessageParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SignEvmMessageResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .SignEvmTransactionWithBodyWithResponse (ctx context .Context , address string , params *openapi .SignEvmTransactionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SignEvmTransactionResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .SignEvmTypedDataWithBodyWithResponse (ctx context .Context , address string , params *openapi .SignEvmTypedDataParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SignEvmTypedDataResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .SignSolanaMessageWithBodyWithResponse (ctx context .Context , address string , params *openapi .SignSolanaMessageParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SignSolanaMessageResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .SignSolanaTransactionWithBodyWithResponse (ctx context .Context , address string , params *openapi .SignSolanaTransactionParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .SignSolanaTransactionResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .UpdateEvmAccountWithBodyWithResponse (ctx context .Context , address string , params *openapi .UpdateEvmAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .UpdateEvmAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .UpdateEvmSmartAccountWithBodyWithResponse (ctx context .Context , address string , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .UpdateEvmSmartAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .UpdatePolicyWithBodyWithResponse (ctx context .Context , policyId string , params *openapi .UpdatePolicyParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .UpdatePolicyResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .UpdateSolanaAccountWithBodyWithResponse (ctx context .Context , address string , params *openapi .UpdateSolanaAccountParams , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .UpdateSolanaAccountResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .UpdateWebhookSubscriptionWithBodyWithResponse (ctx context .Context , subscriptionId openapi_types .UUID , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .UpdateWebhookSubscriptionResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .ValidateEndUserAccessTokenWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .ValidateEndUserAccessTokenResponse , error )
func github.com/coinbase/cdp-sdk/go/openapi.ClientWithResponsesInterface .VerifyX402PaymentWithBodyWithResponse (ctx context .Context , contentType string , body Reader , reqEditors ...openapi .RequestEditorFn ) (*openapi .VerifyX402PaymentResponse , error )
func github.com/google/uuid.NewRandomFromReader (r Reader ) (uuid .UUID , error )
func github.com/google/uuid.NewV7FromReader (r Reader ) (uuid .UUID , error )
func github.com/google/uuid.SetRand (r Reader )
func mime/multipart.NewReader (r Reader , boundary string ) *multipart .Reader
func mime/quotedprintable.NewReader (r Reader ) *quotedprintable .Reader
func net.(*TCPConn ).ReadFrom (r Reader ) (int64 , error )
func net/http.NewRequest (method, url string , body Reader ) (*http .Request , error )
func net/http.NewRequestWithContext (ctx context .Context , method, url string , body Reader ) (*http .Request , error )
func net/http.Post (url, contentType string , body Reader ) (resp *http .Response , err error )
func net/http.(*Client ).Post (url, contentType string , body Reader ) (resp *http .Response , err error )
func net/http/internal.NewChunkedReader (r Reader ) Reader
func os.(*File ).ReadFrom (r Reader ) (n int64 , err error )
func vendor/golang.org/x/text/transform.NewReader (r Reader , t transform .Transformer ) *transform .Reader
func vendor/golang.org/x/text/unicode/norm.Form .Reader (r Reader ) Reader
/* 31+ unexporteds ... */ /* 31+ unexporteds: */
func copyBuffer (dst Writer , src Reader , buf []byte ) (written int64 , err error )
func bufio.(*Reader ).reset (buf []byte , r Reader )
func crypto/ecdsa.generateLegacy (c elliptic .Curve , rand Reader ) (*ecdsa .PrivateKey , error )
func crypto/ecdsa.generateNISTEC [Point](c *ecdsa .nistCurve [Point], rand Reader ) (*ecdsa .PrivateKey , error )
func crypto/ecdsa.mixedCSPRNG (rand Reader , priv *ecdsa .PrivateKey , hash []byte ) (Reader , error )
func crypto/ecdsa.randFieldElement (c elliptic .Curve , rand Reader ) (k *big .Int , err error )
func crypto/ecdsa.randomPoint [Point](c *ecdsa .nistCurve [Point], rand Reader ) (k *bigmod .Nat , p Point, err error )
func crypto/ecdsa.signAsm (priv *ecdsa .PrivateKey , csprng Reader , hash []byte ) (sig []byte , err error )
func crypto/ecdsa.signLegacy (priv *ecdsa .PrivateKey , csprng Reader , hash []byte ) (sig []byte , err error )
func crypto/ecdsa.signNISTEC [Point](c *ecdsa .nistCurve [Point], priv *ecdsa .PrivateKey , csprng Reader , hash []byte ) (sig []byte , err error )
func crypto/rsa.decryptOAEP (hash, mgfHash hash .Hash , random Reader , priv *rsa .PrivateKey , ciphertext []byte , label []byte ) ([]byte , error )
func crypto/rsa.nonZeroRandomBytes (s []byte , random Reader ) (err error )
func crypto/tls.generateECDHEKey (rand Reader , curveID tls .CurveID ) (*ecdh .PrivateKey , error )
func crypto/tls.(*Conn ).readFromUntil (r Reader , n int ) error
func crypto/x509.signTBS (tbs []byte , key crypto .Signer , sigAlg x509 .SignatureAlgorithm , rand Reader ) ([]byte , error )
func fmt.newScanState (r Reader , nlIsSpace, nlIsEnd bool ) (s *fmt .ss , old fmt .ssave )
func net.genericReadFrom (c *net .TCPConn , r Reader ) (n int64 , err error )
func net.sendFile (c *net .netFD , r Reader ) (written int64 , err error , handled bool )
func net.spliceFrom (c *net .netFD , r Reader ) (written int64 , err error , handled bool )
func net.(*TCPConn ).readFrom (r Reader ) (int64 , error )
func net/http.http2NewFramer (w Writer , r Reader ) *http .http2Framer
func net/http.http2readFrameHeader (buf []byte , r Reader ) (http .http2FrameHeader , error )
func net/http.http2ReadFrameHeader (r Reader ) (http .http2FrameHeader , error )
func net/http.isKnownInMemoryReader (r Reader ) bool
func net/http.newBufioReader (r Reader ) *bufio .Reader
func net/http.unwrapNopCloser (r Reader ) (underlyingReader Reader , isNopCloser bool )
func os.genericReadFrom (f *os .File , r Reader ) (int64 , error )
func os.tryLimitedReader (r Reader ) (*LimitedReader , Reader , int64 )
func os.(*File ).copyFileRange (r Reader ) (written int64 , handled bool , err error )
func os.(*File ).readFrom (r Reader ) (written int64 , handled bool , err error )
func os.(*File ).spliceToFile (r Reader ) (written int64 , handled bool , err error )
As Types Of (total 2, in which 1 is exported )
var crypto/rand.Reader
/* one unexported ... */ /* one unexported: */
var github.com/google/uuid.rander
type ReaderAt (interface)
ReaderAt is the interface that wraps the basic ReadAt method.
ReadAt reads len(p) bytes into p starting at offset off in the
underlying input source. It returns the number of bytes
read (0 <= n <= len(p)) and any error encountered.
When ReadAt returns n < len(p), it returns a non-nil error
explaining why more bytes were not returned. In this respect,
ReadAt is stricter than Read.
Even if ReadAt returns n < len(p), it may use all of p as scratch
space during the call. If some data is available but not len(p) bytes,
ReadAt blocks until either all the data is available or an error occurs.
In this respect ReadAt is different from Read.
If the n = len(p) bytes returned by ReadAt are at the end of the
input source, ReadAt may return either err == EOF or err == nil.
If ReadAt is reading from an input source with a seek offset,
ReadAt should not affect nor be affected by the underlying
seek offset.
Clients of ReadAt can execute parallel ReadAt calls on the
same input source.
Implementations must not retain p.
Methods (only one, which is exported )
( ReaderAt) ReadAt (p []byte , off int64 ) (n int , err error )
Implemented By (at least 9, in which 5 are exported )
*SectionReader
*bytes.Reader
mime/multipart.File (interface)
*os.File
*strings.Reader
/* 4+ unexporteds ... */ /* 4+ unexporteds: */
*embed.openFile
mime/multipart.sectionReadCloser
os.fileWithoutReadFrom
os.fileWithoutWriteTo
As Outputs Of (at least one exported )
func (*SectionReader ).Outer () (r ReaderAt , off int64 , n int64 )
As Inputs Of (at least one exported )
func NewSectionReader (r ReaderAt , off int64 , n int64 ) *SectionReader
type ReadSeeker (interface)
ReadSeeker is the interface that groups the basic Read and Seek methods.
Methods (total 2, both are exported )
( ReadSeeker) Read (p []byte ) (n int , err error )
( ReadSeeker) Seek (offset int64 , whence int ) (int64 , error )
Implemented By (at least 14, in which 9 are exported )
ReadSeekCloser (interface)
ReadWriteSeeker (interface)
*SectionReader
*bytes.Reader
*internal/poll.FD
mime/multipart.File (interface)
net/http.File (interface)
*os.File
*strings.Reader
/* 5+ unexporteds ... */ /* 5+ unexporteds: */
*embed.openFile
mime/multipart.sectionReadCloser
net/http.ioFile
os.fileWithoutReadFrom
os.fileWithoutWriteTo
Implements (at least 2, both are exported )
ReadSeeker : Reader
ReadSeeker : Seeker
As Inputs Of (at least 2, in which 1 is exported )
func net/http.ServeContent (w http .ResponseWriter , req *http .Request , name string , modtime time .Time , content ReadSeeker )
/* at least one unexported ... */ /* at least one unexported: */
func net/http.serveContent (w http .ResponseWriter , r *http .Request , name string , modtime time .Time , sizeFunc func() (int64 , error ), content ReadSeeker )
type RuneReader (interface)
RuneReader is the interface that wraps the ReadRune method.
ReadRune reads a single encoded Unicode character
and returns the rune and its size in bytes. If no character is
available, err will be set.
Methods (only one, which is exported )
( RuneReader) ReadRune () (r rune , size int , err error )
Implemented By (at least 11, in which 7 are exported )
RuneScanner (interface)
*bufio.Reader
bufio.ReadWriter
*bytes.Buffer
*bytes.Reader
fmt.ScanState (interface)
*strings.Reader
/* 4+ unexporteds ... */ /* 4+ unexporteds: */
*encoding/json.encodeState
*fmt.readRune
*fmt.ss
math/big.byteReader
As Inputs Of (at least 7, in which 4 are exported )
func regexp.MatchReader (pattern string , r RuneReader ) (matched bool , err error )
func regexp.(*Regexp ).FindReaderIndex (r RuneReader ) (loc []int )
func regexp.(*Regexp ).FindReaderSubmatchIndex (r RuneReader ) []int
func regexp.(*Regexp ).MatchReader (r RuneReader ) bool
/* 3+ unexporteds ... */ /* 3+ unexporteds: */
func regexp.(*Regexp ).doExecute (r RuneReader , b []byte , s string , pos int , ncap int , dstCap []int ) []int
func regexp.(*Regexp ).doMatch (r RuneReader , b []byte , s string ) bool
func regexp.(*Regexp ).doOnePass (ir RuneReader , ib []byte , is string , pos, ncap int , dstCap []int ) []int
type SectionReader (struct)
SectionReader implements Read, Seek, and ReadAt on a section
of an underlying [ReaderAt].
Fields (total 5, none are exported )
/* 5 unexporteds ... */ /* 5 unexporteds: */
base int64
// constant after creation
limit int64
// constant after creation
n int64
// constant after creation
off int64
r ReaderAt
// constant after creation
Methods (total 5, all are exported )
(*SectionReader) Outer () (r ReaderAt , off int64 , n int64 )
Outer returns the underlying [ReaderAt] and offsets for the section.
The returned values are the same that were passed to [NewSectionReader]
when the [SectionReader] was created.
(*SectionReader) Read (p []byte ) (n int , err error )
(*SectionReader) ReadAt (p []byte , off int64 ) (n int , err error )
(*SectionReader) Seek (offset int64 , whence int ) (int64 , error )
(*SectionReader) Size () int64
Size returns the size of the section in bytes.
Implements (at least 4, all are exported )
*SectionReader : Reader
*SectionReader : ReaderAt
*SectionReader : ReadSeeker
*SectionReader : Seeker
As Outputs Of (at least one exported )
func NewSectionReader (r ReaderAt , off int64 , n int64 ) *SectionReader
type Seeker (interface)
Seeker is the interface that wraps the basic Seek method.
Seek sets the offset for the next Read or Write to offset,
interpreted according to whence:
[SeekStart] means relative to the start of the file,
[SeekCurrent] means relative to the current offset, and
[SeekEnd] means relative to the end
(for example, offset = -2 specifies the penultimate byte of the file).
Seek returns the new offset relative to the start of the
file or an error, if any.
Seeking to an offset before the start of the file is an error.
Seeking to any positive offset may be allowed, but if the new offset exceeds
the size of the underlying object the behavior of subsequent I/O operations
is implementation-dependent.
Methods (only one, which is exported )
( Seeker) Seek (offset int64 , whence int ) (int64 , error )
Implemented By (at least 18, in which 13 are exported )
*OffsetWriter
ReadSeekCloser (interface)
ReadSeeker (interface)
ReadWriteSeeker (interface)
*SectionReader
WriteSeeker (interface)
*bytes.Reader
*internal/poll.FD
mime/multipart.File (interface)
net/http.File (interface)
*os.File
*strings.Reader
*vendor/golang.org/x/text/unicode/norm.Iter
/* 5+ unexporteds ... */ /* 5+ unexporteds: */
*embed.openFile
mime/multipart.sectionReadCloser
net/http.ioFile
os.fileWithoutReadFrom
os.fileWithoutWriteTo
type Writer (interface)
Writer is the interface that wraps the basic Write method.
Write writes len(p) bytes from p to the underlying data stream.
It returns the number of bytes written from p (0 <= n <= len(p))
and any error encountered that caused the write to stop early.
Write must return a non-nil error if it returns n < len(p).
Write must not modify the slice data, even temporarily.
Implementations must not retain p.
Methods (only one, which is exported )
( Writer) Write ([]byte ) (int , error )
Implemented By (at least 89, in which 34 are exported )
*OffsetWriter
*PipeWriter
ReadWriteCloser (interface)
ReadWriter (interface)
ReadWriteSeeker (interface)
WriteCloser (interface)
WriteSeeker (interface)
bufio.ReadWriter
*bufio.Writer
*bytes.Buffer
*compress/flate.Writer
*compress/gzip.Writer
crypto/cipher.StreamWriter
*crypto/tls.Conn
fmt.State (interface)
hash.Hash (interface)
hash.Hash32 (interface)
hash.Hash64 (interface)
internal/bisect.Writer (interface)
*internal/poll.FD
*mime/quotedprintable.Writer
net.Conn (interface)
*net.IPConn
*net.TCPConn
*net.UDPConn
*net.UnixConn
net/http.ResponseWriter (interface)
net/http/internal.FlushAfterChunkWriter
*os.File
*strings.Builder
*vendor/golang.org/x/crypto/internal/poly1305.MAC
vendor/golang.org/x/crypto/sha3.ShakeHash (interface)
*vendor/golang.org/x/net/http2/hpack.Decoder
*vendor/golang.org/x/text/transform.Writer
/* 55+ unexporteds ... */ /* 55+ unexporteds: */
discard
*multiWriter
*compress/flate.dictWriter
*crypto/hmac.hmac
*crypto/md5.digest
*crypto/sha1.digest
*crypto/sha256.digest
*crypto/sha512.digest
crypto/tls.constantTimeHash (interface)
*crypto/tls.cthWrapper
*crypto/tls.finishedHash
crypto/tls.transcriptHash (interface)
*encoding/base64.encoder
*encoding/hex.dumper
*encoding/hex.encoder
*encoding/json.encodeState
*encoding/pem.lineBreaker
*fmt.pp
*hash/crc32.digest
*internal/godebug.runtimeStderr
*mime/multipart.part
*net.conn
*net.netFD
*net.pipe
net.tcpConnWithoutReadFrom
net.tcpConnWithoutWriteTo
net/http.bufioFlushWriter
net/http.checkConnErrorWriter
*net/http.chunkWriter
*net/http.countingWriter
*net/http.http2bufferedWriter
net/http.http2chunkWriter
*net/http.http2dataBuffer
*net/http.http2pipe
net/http.http2pipeBuffer (interface)
*net/http.http2responseWriter
net/http.http2stickyErrWriter
*net/http.loggingConn
net/http.persistConnWriter
*net/http.populateResponse
net/http.readWriteCloserBody
*net/http.response
net/http.socksConn
*net/http.timeoutWriter
net/http.writerOnly
*net/http/internal.chunkedWriter
*net/textproto.dotWriter
os.fileWithoutReadFrom
os.fileWithoutWriteTo
*strings.appendSliceWriter
*vendor/golang.org/x/crypto/internal/poly1305.mac
*vendor/golang.org/x/crypto/internal/poly1305.macGeneric
vendor/golang.org/x/crypto/sha3.cshakeState
*vendor/golang.org/x/crypto/sha3.state
*vendor/golang.org/x/text/unicode/norm.normWriter
Implements (at least 2, in which 1 is exported )
Writer : internal/bisect.Writer
/* at least one unexported ... */ /* at least one unexported: */
Writer : crypto/tls.transcriptHash
As Outputs Of (at least 7, all are exported )
func MultiWriter (writers ...Writer ) Writer
func encoding/hex.NewEncoder (w Writer ) Writer
func log.Writer () Writer
func log.(*Logger ).Writer () Writer
func mime/multipart.(*Writer ).CreateFormField (fieldname string ) (Writer , error )
func mime/multipart.(*Writer ).CreateFormFile (fieldname, filename string ) (Writer , error )
func mime/multipart.(*Writer ).CreatePart (header textproto .MIMEHeader ) (Writer , error )
As Inputs Of (at least 65, in which 48 are exported )
func Copy (dst Writer , src Reader ) (written int64 , err error )
func CopyBuffer (dst Writer , src Reader , buf []byte ) (written int64 , err error )
func CopyN (dst Writer , src Reader , n int64 ) (written int64 , err error )
func MultiWriter (writers ...Writer ) Writer
func TeeReader (r Reader , w Writer ) Reader
func WriteString (w Writer , s string ) (n int , err error )
func WriterTo .WriteTo (w Writer ) (n int64 , err error )
func bufio.NewWriter (w Writer ) *bufio .Writer
func bufio.NewWriterSize (w Writer , size int ) *bufio .Writer
func bufio.(*Reader ).WriteTo (w Writer ) (n int64 , err error )
func bufio.(*Writer ).Reset (w Writer )
func bytes.(*Buffer ).WriteTo (w Writer ) (n int64 , err error )
func bytes.(*Reader ).WriteTo (w Writer ) (n int64 , err error )
func compress/flate.NewWriter (w Writer , level int ) (*flate .Writer , error )
func compress/flate.NewWriterDict (w Writer , level int , dict []byte ) (*flate .Writer , error )
func compress/flate.(*Writer ).Reset (dst Writer )
func compress/gzip.NewWriter (w Writer ) *gzip .Writer
func compress/gzip.NewWriterLevel (w Writer , level int ) (*gzip .Writer , error )
func compress/gzip.(*Writer ).Reset (w Writer )
func encoding/base64.NewEncoder (enc *base64 .Encoding , w Writer ) WriteCloser
func encoding/binary.Write (w Writer , order binary .ByteOrder , data any ) error
func encoding/hex.Dumper (w Writer ) WriteCloser
func encoding/hex.NewEncoder (w Writer ) Writer
func encoding/json.NewEncoder (w Writer ) *json .Encoder
func encoding/pem.Encode (out Writer , b *pem .Block ) error
func fmt.Fprint (w Writer , a ...any ) (n int , err error )
func fmt.Fprintf (w Writer , format string , a ...any ) (n int , err error )
func fmt.Fprintln (w Writer , a ...any ) (n int , err error )
func log.New (out Writer , prefix string , flag int ) *log .Logger
func log.SetOutput (w Writer )
func log.(*Logger ).SetOutput (w Writer )
func mime/multipart.NewWriter (w Writer ) *multipart .Writer
func mime/quotedprintable.NewWriter (w Writer ) *quotedprintable .Writer
func net.(*Buffers ).WriteTo (w Writer ) (n int64 , err error )
func net.(*TCPConn ).WriteTo (w Writer ) (int64 , error )
func net/http.Header .Write (w Writer ) error
func net/http.Header .WriteSubset (w Writer , exclude map[string ]bool ) error
func net/http.(*Request ).Write (w Writer ) error
func net/http.(*Request ).WriteProxy (w Writer ) error
func net/http.(*Response ).Write (w Writer ) error
func net/http/internal.NewChunkedWriter (w Writer ) WriteCloser
func os.(*File ).WriteTo (w Writer ) (n int64 , err error )
func strings.(*Reader ).WriteTo (w Writer ) (n int64 , err error )
func strings.(*Replacer ).WriteString (w Writer , s string ) (n int , err error )
func vendor/golang.org/x/net/http2/hpack.HuffmanDecode (w Writer , v []byte ) (int , error )
func vendor/golang.org/x/net/http2/hpack.NewEncoder (w Writer ) *hpack .Encoder
func vendor/golang.org/x/text/transform.NewWriter (w Writer , t transform .Transformer ) *transform .Writer
func vendor/golang.org/x/text/unicode/norm.Form .Writer (w Writer ) WriteCloser
/* 17+ unexporteds ... */ /* 17+ unexporteds: */
func copyBuffer (dst Writer , src Reader , buf []byte ) (written int64 , err error )
func bufio.(*Reader ).writeBuf (w Writer ) (int64 , error )
func compress/flate.newHuffmanBitWriter (w Writer ) *flate .huffmanBitWriter
func compress/gzip.(*Writer ).init (w Writer , level int )
func encoding/pem.writeHeader (out Writer , k, v string ) error
func net.genericWriteTo (c *net .TCPConn , w Writer ) (n int64 , err error )
func net.spliceTo (w Writer , c *net .netFD ) (written int64 , err error , handled bool )
func net.(*TCPConn ).writeTo (w Writer ) (int64 , error )
func net/http.http2newBufferedWriter (w Writer ) *http .http2bufferedWriter
func net/http.http2NewFramer (w Writer , r Reader ) *http .http2Framer
func net/http.newBufioWriterSize (w Writer , size int ) *bufio .Writer
func net/http.Header .write (w Writer , trace *httptrace .ClientTrace ) error
func net/http.Header .writeSubset (w Writer , exclude map[string ]bool , trace *httptrace .ClientTrace ) error
func net/http.(*Request ).write (w Writer , usingProxy bool , extraHeaders http .Header , waitForContinue func() bool ) (err error )
func os.genericWriteTo (f *os .File , w Writer ) (int64 , error )
func os.(*File ).writeTo (w Writer ) (written int64 , handled bool , err error )
func strings.getStringWriter (w Writer ) StringWriter
As Types Of (only one, which is exported )
var Discard
Package-Level Constants (total 3, all are exported)
The pages are generated with Golds v0.7.6 . (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu .
PR and bug reports are welcome and can be submitted to the issue list .
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds .