(src interface{})
| 1860 | ) |
| 1861 | |
| 1862 | func (e *CryptoKeyFeature) Scan(src interface{}) error { |
| 1863 | switch s := src.(type) { |
| 1864 | case []byte: |
| 1865 | *e = CryptoKeyFeature(s) |
| 1866 | case string: |
| 1867 | *e = CryptoKeyFeature(s) |
| 1868 | default: |
| 1869 | return fmt.Errorf("unsupported scan type for CryptoKeyFeature: %T", src) |
| 1870 | } |
| 1871 | return nil |
| 1872 | } |
| 1873 | |
| 1874 | type NullCryptoKeyFeature struct { |
| 1875 | CryptoKeyFeature CryptoKeyFeature `json:"crypto_key_feature"` |
nothing calls this directly
no test coverage detected