reflect

package
v0.0.0-...-73cd16d Latest Latest
Warning

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

Go to latest
Published: May 22, 2024 License: EPL-1.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ByteReaderImpl

type ByteReaderImpl struct {
	ReadByteFn func() (byte, error)
}

func (*ByteReaderImpl) ReadByte

func (s *ByteReaderImpl) ReadByte() (byte, error)

type ByteScannerImpl

type ByteScannerImpl struct {
	ReadByteFn   func() (byte, error)
	UnreadByteFn func() error
}

func (*ByteScannerImpl) ReadByte

func (s *ByteScannerImpl) ReadByte() (byte, error)

func (*ByteScannerImpl) UnreadByte

func (s *ByteScannerImpl) UnreadByte() error

type ByteWriterImpl

type ByteWriterImpl struct {
	WriteByteFn func(byte) error
}

func (*ByteWriterImpl) WriteByte

func (s *ByteWriterImpl) WriteByte(a0 byte) error

type CloserImpl

type CloserImpl struct {
	CloseFn func() error
}

func (*CloserImpl) Close

func (s *CloserImpl) Close() error

type MarshalerImpl

type MarshalerImpl struct {
	MarshalJSONFn func() ([]byte, error)
}

func (*MarshalerImpl) MarshalJSON

func (s *MarshalerImpl) MarshalJSON() ([]byte, error)

type ReadCloserImpl

type ReadCloserImpl struct {
	CloseFn func() error
	ReadFn  func([]byte) (int, error)
}

func (*ReadCloserImpl) Close

func (s *ReadCloserImpl) Close() error

func (*ReadCloserImpl) Read

func (s *ReadCloserImpl) Read(a0 []byte) (int, error)

type ReadSeekCloserImpl

type ReadSeekCloserImpl struct {
	CloseFn func() error
	ReadFn  func([]byte) (int, error)
	SeekFn  func(int64, int) (int64, error)
}

func (*ReadSeekCloserImpl) Close

func (s *ReadSeekCloserImpl) Close() error

func (*ReadSeekCloserImpl) Read

func (s *ReadSeekCloserImpl) Read(a0 []byte) (int, error)

func (*ReadSeekCloserImpl) Seek

func (s *ReadSeekCloserImpl) Seek(a0 int64, a1 int) (int64, error)

type ReadSeekerImpl

type ReadSeekerImpl struct {
	ReadFn func([]byte) (int, error)
	SeekFn func(int64, int) (int64, error)
}

func (*ReadSeekerImpl) Read

func (s *ReadSeekerImpl) Read(a0 []byte) (int, error)

func (*ReadSeekerImpl) Seek

func (s *ReadSeekerImpl) Seek(a0 int64, a1 int) (int64, error)

type ReadWriteCloserImpl

type ReadWriteCloserImpl struct {
	CloseFn func() error
	ReadFn  func([]byte) (int, error)
	WriteFn func([]byte) (int, error)
}

func (*ReadWriteCloserImpl) Close

func (s *ReadWriteCloserImpl) Close() error

func (*ReadWriteCloserImpl) Read

func (s *ReadWriteCloserImpl) Read(a0 []byte) (int, error)

func (*ReadWriteCloserImpl) Write

func (s *ReadWriteCloserImpl) Write(a0 []byte) (int, error)

type ReadWriteSeekerImpl

type ReadWriteSeekerImpl struct {
	ReadFn  func([]byte) (int, error)
	SeekFn  func(int64, int) (int64, error)
	WriteFn func([]byte) (int, error)
}

func (*ReadWriteSeekerImpl) Read

func (s *ReadWriteSeekerImpl) Read(a0 []byte) (int, error)

func (*ReadWriteSeekerImpl) Seek

func (s *ReadWriteSeekerImpl) Seek(a0 int64, a1 int) (int64, error)

func (*ReadWriteSeekerImpl) Write

func (s *ReadWriteSeekerImpl) Write(a0 []byte) (int, error)

type ReadWriterImpl

type ReadWriterImpl struct {
	ReadFn  func([]byte) (int, error)
	WriteFn func([]byte) (int, error)
}

func (*ReadWriterImpl) Read

func (s *ReadWriterImpl) Read(a0 []byte) (int, error)

func (*ReadWriterImpl) Write

func (s *ReadWriterImpl) Write(a0 []byte) (int, error)

type ReaderAtImpl

type ReaderAtImpl struct {
	ReadAtFn func([]byte, int64) (int, error)
}

func (*ReaderAtImpl) ReadAt

func (s *ReaderAtImpl) ReadAt(a0 []byte, a1 int64) (int, error)

type ReaderFromImpl

type ReaderFromImpl struct {
	ReadFromFn func(io.Reader) (int64, error)
}

func (*ReaderFromImpl) ReadFrom

func (s *ReaderFromImpl) ReadFrom(a0 io.Reader) (int64, error)

type ReaderImpl

type ReaderImpl struct {
	ReadFn func([]byte) (int, error)
}

func (*ReaderImpl) Read

func (s *ReaderImpl) Read(a0 []byte) (int, error)

type RuneReaderImpl

type RuneReaderImpl struct {
	ReadRuneFn func() (rune, int, error)
}

func (*RuneReaderImpl) ReadRune

func (s *RuneReaderImpl) ReadRune() (rune, int, error)

type RuneScannerImpl

type RuneScannerImpl struct {
	ReadRuneFn   func() (rune, int, error)
	UnreadRuneFn func() error
}

func (*RuneScannerImpl) ReadRune

func (s *RuneScannerImpl) ReadRune() (rune, int, error)

func (*RuneScannerImpl) UnreadRune

func (s *RuneScannerImpl) UnreadRune() error

type SeekerImpl

type SeekerImpl struct {
	SeekFn func(int64, int) (int64, error)
}

func (*SeekerImpl) Seek

func (s *SeekerImpl) Seek(a0 int64, a1 int) (int64, error)

type SignalImpl

type SignalImpl struct {
	SignalFn func()
	StringFn func() string
}

func (*SignalImpl) Signal

func (s *SignalImpl) Signal()

func (*SignalImpl) String

func (s *SignalImpl) String() string

type StringWriterImpl

type StringWriterImpl struct {
	WriteStringFn func(string) (int, error)
}

func (*StringWriterImpl) WriteString

func (s *StringWriterImpl) WriteString(a0 string) (int, error)

type UnmarshalerImpl

type UnmarshalerImpl struct {
	UnmarshalJSONFn func([]byte) error
}

func (*UnmarshalerImpl) UnmarshalJSON

func (s *UnmarshalerImpl) UnmarshalJSON(a0 []byte) error

type WriteCloserImpl

type WriteCloserImpl struct {
	CloseFn func() error
	WriteFn func([]byte) (int, error)
}

func (*WriteCloserImpl) Close

func (s *WriteCloserImpl) Close() error

func (*WriteCloserImpl) Write

func (s *WriteCloserImpl) Write(a0 []byte) (int, error)

type WriteSeekerImpl

type WriteSeekerImpl struct {
	SeekFn  func(int64, int) (int64, error)
	WriteFn func([]byte) (int, error)
}

func (*WriteSeekerImpl) Seek

func (s *WriteSeekerImpl) Seek(a0 int64, a1 int) (int64, error)

func (*WriteSeekerImpl) Write

func (s *WriteSeekerImpl) Write(a0 []byte) (int, error)

type WriterAtImpl

type WriterAtImpl struct {
	WriteAtFn func([]byte, int64) (int, error)
}

func (*WriterAtImpl) WriteAt

func (s *WriterAtImpl) WriteAt(a0 []byte, a1 int64) (int, error)

type WriterImpl

type WriterImpl struct {
	WriteFn func([]byte) (int, error)
}

func (*WriterImpl) Write

func (s *WriterImpl) Write(a0 []byte) (int, error)

type WriterToImpl

type WriterToImpl struct {
	WriteToFn func(io.Writer) (int64, error)
}

func (*WriterToImpl) WriteTo

func (s *WriterToImpl) WriteTo(a0 io.Writer) (int64, error)

Jump to

Keyboard shortcuts

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