Enum xsd_types::UnsignedLongValue
source · pub enum UnsignedLongValue {
UnsignedLong(UnsignedLong),
UnsignedInt(UnsignedInt),
UnsignedShort(UnsignedShort),
UnsignedByte(UnsignedByte),
}Expand description
Any specialized UnsignedLong value.
Variants§
UnsignedLong(UnsignedLong)
UnsignedInt(UnsignedInt)
UnsignedShort(UnsignedShort)
UnsignedByte(UnsignedByte)
Implementations§
source§impl UnsignedLongValue
impl UnsignedLongValue
pub fn datatype(&self) -> UnsignedLongDatatype
Trait Implementations§
source§impl Clone for UnsignedLongValue
impl Clone for UnsignedLongValue
source§fn clone(&self) -> UnsignedLongValue
fn clone(&self) -> UnsignedLongValue
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 UnsignedLongValue
impl Debug for UnsignedLongValue
source§impl Display for UnsignedLongValue
impl Display for UnsignedLongValue
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<UnsignedLongValue> for DecimalValue
impl From<UnsignedLongValue> for DecimalValue
source§fn from(value: UnsignedLongValue) -> Self
fn from(value: UnsignedLongValue) -> Self
Converts to this type from the input type.
source§impl From<UnsignedLongValue> for IntegerValue
impl From<UnsignedLongValue> for IntegerValue
source§fn from(value: UnsignedLongValue) -> Self
fn from(value: UnsignedLongValue) -> Self
Converts to this type from the input type.
source§impl From<UnsignedLongValue> for NonNegativeIntegerValue
impl From<UnsignedLongValue> for NonNegativeIntegerValue
source§fn from(value: UnsignedLongValue) -> Self
fn from(value: UnsignedLongValue) -> Self
Converts to this type from the input type.
source§impl From<UnsignedLongValue> for Value
impl From<UnsignedLongValue> for Value
source§fn from(value: UnsignedLongValue) -> Self
fn from(value: UnsignedLongValue) -> Self
Converts to this type from the input type.
source§impl From<UnsignedShortValue> for UnsignedLongValue
impl From<UnsignedShortValue> for UnsignedLongValue
source§fn from(value: UnsignedShortValue) -> Self
fn from(value: UnsignedShortValue) -> Self
Converts to this type from the input type.
source§impl TryFrom<DecimalValue> for UnsignedLongValue
impl TryFrom<DecimalValue> for UnsignedLongValue
§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 UnsignedLongValue
impl TryFrom<IntegerValue> for UnsignedLongValue
§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 UnsignedLongValue
impl TryFrom<NonNegativeIntegerValue> for UnsignedLongValue
§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<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<UnsignedLongValue> for UnsignedShortValue
impl TryFrom<UnsignedLongValue> for UnsignedShortValue
§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 UnsignedLongValue
impl TryFrom<Value> for UnsignedLongValue
Auto Trait Implementations§
impl RefUnwindSafe for UnsignedLongValue
impl Send for UnsignedLongValue
impl Sync for UnsignedLongValue
impl Unpin for UnsignedLongValue
impl UnwindSafe for UnsignedLongValue
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