WithCharset set charset
(charset string)
| 61 | |
| 62 | // WithCharset set charset |
| 63 | func WithCharset(charset string) Option { |
| 64 | return func(o *options) { |
| 65 | o.Charset = charset |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | // WithCollation set collation |
| 70 | func WithCollation(collation string) Option { |
no outgoing calls