IdentityEncoder is a null encoder that applies no transformation.
| 320 | |
| 321 | // IdentityEncoder is a null encoder that applies no transformation. |
| 322 | type IdentityEncoder struct{} |
| 323 | |
| 324 | func NewIdentityEncoder(options ...EncodingOption) (*IdentityEncoder, error) { |
| 325 | if len(options) > 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected