Enum xsd_types::UnsignedIntValue
source · pub enum UnsignedIntValue {
UnsignedInt(UnsignedInt),
UnsignedShort(UnsignedShort),
UnsignedByte(UnsignedByte),
}Expand description
Any specialized UnsignedInt value.
Variants§
Implementations§
source§impl UnsignedIntValue
impl UnsignedIntValue
pub fn datatype(&self) -> UnsignedIntDatatype
Trait Implementations§
source§impl Clone for UnsignedIntValue
impl Clone for UnsignedIntValue
source§fn clone(&self) -> UnsignedIntValue
fn clone(&self) -> UnsignedIntValue
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for UnsignedIntValue
impl Debug for UnsignedIntValue
source§impl Display for UnsignedIntValue
impl Display for UnsignedIntValue
source§impl From<UnsignedIntValue> for DecimalValue
impl From<UnsignedIntValue> for DecimalValue
source§fn from(value: UnsignedIntValue) -> Self
fn from(value: UnsignedIntValue) -> Self
Converts to this type from the input type.
source§impl From<UnsignedIntValue> for IntegerValue
impl From<UnsignedIntValue> for IntegerValue
source§fn from(value: UnsignedIntValue) -> Self
fn from(value: UnsignedIntValue) -> Self
Converts to this type from the input type.
source§impl From<UnsignedIntValue> for NonNegativeIntegerValue
impl From<UnsignedIntValue> for NonNegativeIntegerValue
source§fn from(value: UnsignedIntValue) -> Self
fn from(value: UnsignedIntValue) -> Self
Converts to this type from the input type.
source§impl From<UnsignedIntValue> for UnsignedLongValue
impl From<UnsignedIntValue> for UnsignedLongValue
source§fn from(value: UnsignedIntValue) -> Self
fn from(value: UnsignedIntValue) -> Self
Converts to this type from the input type.
source§impl From<UnsignedIntValue> for Value
impl From<UnsignedIntValue> for Value
source§fn from(value: UnsignedIntValue) -> Self
fn from(value: UnsignedIntValue) -> Self
Converts to this type from the input type.
source§impl From<UnsignedShortValue> for UnsignedIntValue
impl From<UnsignedShortValue> for UnsignedIntValue
source§fn from(value: UnsignedShortValue) -> Self
fn from(value: UnsignedShortValue) -> Self
Converts to this type from the input type.
source§impl TryFrom<DecimalValue> for UnsignedIntValue
impl TryFrom<DecimalValue> for UnsignedIntValue
§type Error = DecimalValue
type Error = DecimalValue
The type returned in the event of a conversion error.
source§fn try_from(value: DecimalValue) -> Result<Self, DecimalValue>
fn try_from(value: DecimalValue) -> Result<Self, DecimalValue>
Performs the conversion.
source§impl TryFrom<IntegerValue> for UnsignedIntValue
impl TryFrom<IntegerValue> for UnsignedIntValue
§type Error = IntegerValue
type Error = IntegerValue
The type returned in the event of a conversion error.
source§fn try_from(value: IntegerValue) -> Result<Self, IntegerValue>
fn try_from(value: IntegerValue) -> Result<Self, IntegerValue>
Performs the conversion.
source§impl TryFrom<NonNegativeIntegerValue> for UnsignedIntValue
impl TryFrom<NonNegativeIntegerValue> for UnsignedIntValue
§type Error = NonNegativeIntegerValue
type Error = NonNegativeIntegerValue
The type returned in the event of a conversion error.
source§fn try_from(
value: NonNegativeIntegerValue
) -> Result<Self, NonNegativeIntegerValue>
fn try_from( value: NonNegativeIntegerValue ) -> Result<Self, NonNegativeIntegerValue>
Performs the conversion.
source§impl TryFrom<UnsignedIntValue> for UnsignedShortValue
impl TryFrom<UnsignedIntValue> for UnsignedShortValue
§type Error = UnsignedIntValue
type Error = UnsignedIntValue
The type returned in the event of a conversion error.
source§fn try_from(value: UnsignedIntValue) -> Result<Self, UnsignedIntValue>
fn try_from(value: UnsignedIntValue) -> Result<Self, UnsignedIntValue>
Performs the conversion.
source§impl TryFrom<UnsignedLongValue> for UnsignedIntValue
impl TryFrom<UnsignedLongValue> for UnsignedIntValue
§type Error = UnsignedLongValue
type Error = UnsignedLongValue
The type returned in the event of a conversion error.
source§fn try_from(value: UnsignedLongValue) -> Result<Self, UnsignedLongValue>
fn try_from(value: UnsignedLongValue) -> Result<Self, UnsignedLongValue>
Performs the conversion.
source§impl TryFrom<Value> for UnsignedIntValue
impl TryFrom<Value> for UnsignedIntValue
Auto Trait Implementations§
impl RefUnwindSafe for UnsignedIntValue
impl Send for UnsignedIntValue
impl Sync for UnsignedIntValue
impl Unpin for UnsignedIntValue
impl UnwindSafe for UnsignedIntValue
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more