/// Evaluate if the value is equal to its types default value.
////// This is intended to be use with serde's `skip_serializing_if`. But keep in mind, that this will
/// create a new (default) instant of the type for every check.
pubfnis_default<T>(value:&T)->boolwhere
T: Default + PartialEq,
{
value ==&T::default()}