pub enum NonNegativeIntegerDatatype {
UnsignedLong(Option<UnsignedLongDatatype>),
PositiveInteger,
}Variants§
UnsignedLong(Option<UnsignedLongDatatype>)
PositiveInteger
Trait Implementations§
source§impl From<NonNegativeIntegerDatatype> for Datatype
impl From<NonNegativeIntegerDatatype> for Datatype
source§fn from(ty: NonNegativeIntegerDatatype) -> Self
fn from(ty: NonNegativeIntegerDatatype) -> Self
Converts to this type from the input type.
source§impl From<NonNegativeIntegerDatatype> for DecimalDatatype
impl From<NonNegativeIntegerDatatype> for DecimalDatatype
source§fn from(ty: NonNegativeIntegerDatatype) -> Self
fn from(ty: NonNegativeIntegerDatatype) -> Self
Converts to this type from the input type.
source§impl From<NonNegativeIntegerDatatype> for IntegerDatatype
impl From<NonNegativeIntegerDatatype> for IntegerDatatype
source§fn from(ty: NonNegativeIntegerDatatype) -> Self
fn from(ty: NonNegativeIntegerDatatype) -> Self
Converts to this type from the input type.
source§impl From<Option<UnsignedIntDatatype>> for NonNegativeIntegerDatatype
impl From<Option<UnsignedIntDatatype>> for NonNegativeIntegerDatatype
source§fn from(input_opt: Option<UnsignedIntDatatype>) -> Self
fn from(input_opt: Option<UnsignedIntDatatype>) -> Self
Converts to this type from the input type.
source§impl From<Option<UnsignedLongDatatype>> for NonNegativeIntegerDatatype
impl From<Option<UnsignedLongDatatype>> for NonNegativeIntegerDatatype
source§fn from(input_opt: Option<UnsignedLongDatatype>) -> Self
fn from(input_opt: Option<UnsignedLongDatatype>) -> Self
Converts to this type from the input type.
source§impl From<Option<UnsignedShortDatatype>> for NonNegativeIntegerDatatype
impl From<Option<UnsignedShortDatatype>> for NonNegativeIntegerDatatype
source§fn from(input_opt: Option<UnsignedShortDatatype>) -> Self
fn from(input_opt: Option<UnsignedShortDatatype>) -> Self
Converts to this type from the input type.
source§impl From<UnsignedIntDatatype> for NonNegativeIntegerDatatype
impl From<UnsignedIntDatatype> for NonNegativeIntegerDatatype
source§fn from(ty: UnsignedIntDatatype) -> Self
fn from(ty: UnsignedIntDatatype) -> Self
Converts to this type from the input type.
source§impl From<UnsignedLongDatatype> for NonNegativeIntegerDatatype
impl From<UnsignedLongDatatype> for NonNegativeIntegerDatatype
source§fn from(ty: UnsignedLongDatatype) -> Self
fn from(ty: UnsignedLongDatatype) -> Self
Converts to this type from the input type.
source§impl From<UnsignedShortDatatype> for NonNegativeIntegerDatatype
impl From<UnsignedShortDatatype> for NonNegativeIntegerDatatype
source§fn from(ty: UnsignedShortDatatype) -> Self
fn from(ty: UnsignedShortDatatype) -> Self
Converts to this type from the input type.