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 duplicate of the value. Read more
1.0.0§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
Source§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
Source§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
Source§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
Source§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
Source§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 Freeze for UnsignedIntValue
impl RefUnwindSafe for UnsignedIntValue
impl Send for UnsignedIntValue
impl Sync for UnsignedIntValue
impl Unpin for UnsignedIntValue
impl UnwindSafe for UnsignedIntValue
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)