--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
func (req *Request) Valid(v *validation.Validation) {
// do any further checking here to cause validation to fail
v.SetError("This failed at 43")
}
Got some good mileage out of this so far... It also allows an optional callback after preliminary validation is done for any "last chance" checks...Ah, from looking into reflect more I think my misunderstanding what that I didn't know that with reflection you could tell the difference between not set and zero,