Default value for T
| 3 | |
| 4 | /// Default value for T |
| 5 | pub trait DefaultActiveValue { |
| 6 | /// `Default::default()` if implemented, dummy value otherwise |
| 7 | fn default_value(&self) -> Self; |
| 8 | } |
| 9 | |
| 10 | /// Default value for Option<T> |
| 11 | pub trait DefaultActiveValueNone { |
nothing calls this directly
no outgoing calls
no test coverage detected