Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type JsonMarshaller ¶
type JsonMarshaller struct{}
func (*JsonMarshaller) Marshal ¶
func (m *JsonMarshaller) Marshal(data UnmarshalledData) (*string, error)
func (*JsonMarshaller) Unmarshal ¶
func (m *JsonMarshaller) Unmarshal(data string, v UnmarshalledData) error
type Marshaller ¶
type Marshaller interface { Marshal(data UnmarshalledData) (*string, error) Unmarshal(data string, v UnmarshalledData) error }
func NewMarshaller ¶
func NewMarshaller(format string) (Marshaller, error)
type UnmarshalledData ¶
type UnmarshalledData = map[string]interface{}
func NewUnmarshalResult ¶
func NewUnmarshalResult() UnmarshalledData
type YamlMarshaller ¶
type YamlMarshaller struct{}
func (*YamlMarshaller) Marshal ¶
func (m *YamlMarshaller) Marshal(data UnmarshalledData) (*string, error)
func (*YamlMarshaller) Unmarshal ¶
func (m *YamlMarshaller) Unmarshal(data string, v UnmarshalledData) error
Click to show internal directories.
Click to hide internal directories.