BindXML is a shortcut for c.MustBindWith(obj, binding.BindXML).
(obj any)
| 766 | |
| 767 | // BindXML is a shortcut for c.MustBindWith(obj, binding.BindXML). |
| 768 | func (c *Context) BindXML(obj any) error { |
| 769 | return c.MustBindWith(obj, binding.XML) |
| 770 | } |
| 771 | |
| 772 | // BindQuery is a shortcut for c.MustBindWith(obj, binding.Query). |
| 773 | func (c *Context) BindQuery(obj any) error { |