Module sounding_base::missing_value [] [src]

A quantity that has a certain value that indicates missing or invalid data.

Semantically this is no different than the Option type provided by the standard library. However, that type uses an enum, which takes extra space as opposed to using a special value to indicate missing or invalid data.

Structs

OptionVal

A newtype to wrap a type and implement the MissingData trait.

Traits

MissingData

Defines the numeric value used to indicate missing data.