(s *state, _, _ reflect.Value)
| 202 | func (ignore) isFiltered() bool { return false } |
| 203 | func (ignore) filter(_ *state, _ reflect.Type, _, _ reflect.Value) applicableOption { return ignore{} } |
| 204 | func (ignore) apply(s *state, _, _ reflect.Value) { s.report(true, reportByIgnore) } |
| 205 | func (ignore) String() string { return "Ignore()" } |
| 206 | |
| 207 | // validator is a sentinel Option type to indicate that some options could not |