Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for charsetError (0.12 sec)

  1. src/net/mail/message.go

    	return s, false, nil
    }
    
    var rfc2047Decoder = mime.WordDecoder{
    	CharsetReader: func(charset string, input io.Reader) (io.Reader, error) {
    		return nil, charsetError(charset)
    	},
    }
    
    type charsetError string
    
    func (e charsetError) Error() string {
    	return fmt.Sprintf("charset not supported: %q", string(e))
    }
    
    // isAtext reports whether r is an RFC 5322 atext character.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top