Documentation
¶
Overview ¶
Package decode provides decoders for output of a runner.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Decoder ¶
type Decoder interface { // Decode decodes the data in reader to structure in the second // argument of the method. Decode(io.Reader, any) error }
Decoder defines a decoder.
type GobDecoder ¶
type GobDecoder struct{}
GobDecoder is a Decoder that decodes a gob into a struct.
type JSONDecoder ¶
type JSONDecoder struct{}
JSONDecoder is a Decoder that decodes a json into a struct.
type XMLDecoder ¶
type XMLDecoder struct{}
XMLDecoder is a Decoder that decodes a json into a struct.
Click to show internal directories.
Click to hide internal directories.