Documentation
¶
Index ¶
- type Noop
- func (n Noop) Close() error
- func (n Noop) Read([]byte) (int, error)
- func (n Noop) ReadAt([]byte, int64) (int, error)
- func (n Noop) ReadByte() (byte, error)
- func (n Noop) ReadFrom(io.Reader) (int64, error)
- func (n Noop) ReadRune() (rune, int, error)
- func (n Noop) Seek(int64, int) (int64, error)
- func (n Noop) UnreadByte() error
- func (n Noop) UnreadRune() error
- func (n Noop) Write([]byte) (int, error)
- func (n Noop) WriteAt([]byte, int64) (int, error)
- func (n Noop) WriteString(string) (int, error)
- func (n Noop) WriteTo(io.Writer) (int64, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Noop ¶
type Noop struct{}
Noop is a struct used as a container for all `io` methods to satisfy all `io` interfaces.
func (Noop) WriteString ¶
WriteString returns 0, nil.
Click to show internal directories.
Click to hide internal directories.