Documentation
¶
Index ¶
- type ByteReaderImpl
- type ByteScannerImpl
- type ByteWriterImpl
- type CloserImpl
- type MarshalerImpl
- type ReadCloserImpl
- type ReadSeekCloserImpl
- type ReadSeekerImpl
- type ReadWriteCloserImpl
- type ReadWriteSeekerImpl
- type ReadWriterImpl
- type ReaderAtImpl
- type ReaderFromImpl
- type ReaderImpl
- type RuneReaderImpl
- type RuneScannerImpl
- type SeekerImpl
- type SignalImpl
- type StringWriterImpl
- type UnmarshalerImpl
- type WriteCloserImpl
- type WriteSeekerImpl
- type WriterAtImpl
- type WriterImpl
- type WriterToImpl
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ByteReaderImpl ¶
func (*ByteReaderImpl) ReadByte ¶
func (s *ByteReaderImpl) ReadByte() (byte, error)
type ByteScannerImpl ¶
func (*ByteScannerImpl) ReadByte ¶
func (s *ByteScannerImpl) ReadByte() (byte, error)
func (*ByteScannerImpl) UnreadByte ¶
func (s *ByteScannerImpl) UnreadByte() error
type ByteWriterImpl ¶
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 ¶
func (*MarshalerImpl) MarshalJSON ¶
func (s *MarshalerImpl) MarshalJSON() ([]byte, error)
type ReadCloserImpl ¶
func (*ReadCloserImpl) Close ¶
func (s *ReadCloserImpl) Close() 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
type ReadSeekerImpl ¶
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
type ReadWriteSeekerImpl ¶
type ReadWriteSeekerImpl struct { ReadFn func([]byte) (int, error) SeekFn func(int64, int) (int64, error) WriteFn func([]byte) (int, error) }
type ReadWriterImpl ¶
type ReaderAtImpl ¶
type ReaderFromImpl ¶
type ReaderImpl ¶
type RuneReaderImpl ¶
type RuneScannerImpl ¶
func (*RuneScannerImpl) UnreadRune ¶
func (s *RuneScannerImpl) UnreadRune() error
type SeekerImpl ¶
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 ¶
func (*StringWriterImpl) WriteString ¶
func (s *StringWriterImpl) WriteString(a0 string) (int, error)
type UnmarshalerImpl ¶
func (*UnmarshalerImpl) UnmarshalJSON ¶
func (s *UnmarshalerImpl) UnmarshalJSON(a0 []byte) error
type WriteCloserImpl ¶
func (*WriteCloserImpl) Close ¶
func (s *WriteCloserImpl) Close() error
type WriteSeekerImpl ¶
type WriterAtImpl ¶
type WriterImpl ¶
Click to show internal directories.
Click to hide internal directories.