pub trait OptionPgUint<T: UIntType> {
// Required method
fn to_option_uint(&self) -> Option<T::Uint>;
}
Expand description
Allows for converting an Option<PgUInt>
to an Option<[underlying integer type]>
Required Methods§
Sourcefn to_option_uint(&self) -> Option<T::Uint>
fn to_option_uint(&self) -> Option<T::Uint>
Convert any Option<PgUint>
to an Option<[underlying integer type]>