Source File
payload.go
Belonging Package
github.com/aws/aws-sdk-go/private/protocol
package protocol
import (
)
type PayloadUnmarshaler interface {
UnmarshalPayload(io.Reader, interface{}) error
}
type HandlerPayloadUnmarshal struct {
Unmarshalers request.HandlerList
}
func ( HandlerPayloadUnmarshal) ( io.Reader, interface{}) error {
:= &request.Request{
HTTPRequest: &http.Request{},
HTTPResponse: &http.Response{
StatusCode: 200,
Header: http.Header{},
Body: ioutil.NopCloser(),
},
Data: ,
}
.Unmarshalers.Run()
return .Error
}
type PayloadMarshaler interface {
MarshalPayload(io.Writer, interface{}) error
}
type HandlerPayloadMarshal struct {
Marshalers request.HandlerList
}
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |