type mime/multipart.Writer

12 uses

	mime/multipart (current package)
		writer.go#L20: type Writer struct {
		writer.go#L28: func NewWriter(w io.Writer) *Writer {
		writer.go#L29: 	return &Writer{
		writer.go#L36: func (w *Writer) Boundary() string {
		writer.go#L46: func (w *Writer) SetBoundary(boundary string) error {
		writer.go#L75: func (w *Writer) FormDataContentType() string {
		writer.go#L98: func (w *Writer) CreatePart(header textproto.MIMEHeader) (io.Writer, error) {
		writer.go#L136: func (w *Writer) CreateFormFile(fieldname, filename string) (io.Writer, error) {
		writer.go#L147: func (w *Writer) CreateFormField(fieldname string) (io.Writer, error) {
		writer.go#L155: func (w *Writer) WriteField(fieldname, value string) error {
		writer.go#L166: func (w *Writer) Close() error {
		writer.go#L178: 	mw     *Writer