type mime/multipart.Writer

12 uses

	mime/multipart (current package)
		writer.go#L19: type Writer struct {
		writer.go#L27: func NewWriter(w io.Writer) *Writer {
		writer.go#L28: 	return &Writer{
		writer.go#L35: func (w *Writer) Boundary() string {
		writer.go#L45: func (w *Writer) SetBoundary(boundary string) error {
		writer.go#L74: func (w *Writer) FormDataContentType() string {
		writer.go#L97: func (w *Writer) CreatePart(header textproto.MIMEHeader) (io.Writer, error) {
		writer.go#L140: func (w *Writer) CreateFormFile(fieldname, filename string) (io.Writer, error) {
		writer.go#L151: func (w *Writer) CreateFormField(fieldname string) (io.Writer, error) {
		writer.go#L159: func (w *Writer) WriteField(fieldname, value string) error {
		writer.go#L170: func (w *Writer) Close() error {
		writer.go#L182: 	mw     *Writer