Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CBORCodec ¶
type CBORCodec struct{}
CBORCodec provides a codec API for a CBOR encoder and decoder.
type Decoder ¶
type Decoder interface {
// Decode reads the next encoded value from its Reader and stores it in the value pointed to by v.
Decode(v interface{}) error
}
type Encoder ¶
type Encoder interface {
// Encode writes an encoding of v to its Writer.
Encode(v interface{}) error
}
Click to show internal directories.
Click to hide internal directories.