type SimpleValue … var typeSimpleValue … // MarshalCBOR encodes SimpleValue as CBOR simple value (major type 7). func (sv SimpleValue) MarshalCBOR() ([]byte, error) { … } // UnmarshalCBOR decodes CBOR simple value (major type 7) to SimpleValue. func (sv *SimpleValue) UnmarshalCBOR(data []byte) error { … }