(src interface{})
| 3007 | ) |
| 3008 | |
| 3009 | func (e *ProvisionerJobStatus) Scan(src interface{}) error { |
| 3010 | switch s := src.(type) { |
| 3011 | case []byte: |
| 3012 | *e = ProvisionerJobStatus(s) |
| 3013 | case string: |
| 3014 | *e = ProvisionerJobStatus(s) |
| 3015 | default: |
| 3016 | return fmt.Errorf("unsupported scan type for ProvisionerJobStatus: %T", src) |
| 3017 | } |
| 3018 | return nil |
| 3019 | } |
| 3020 | |
| 3021 | type NullProvisionerJobStatus struct { |
| 3022 | ProvisionerJobStatus ProvisionerJobStatus `json:"provisioner_job_status"` |
nothing calls this directly
no test coverage detected