pub struct UnsignedIntDt {
pub id: Option<String>,
pub extension: Option<Vec<Extension>>,
pub value: Option<UnsignedInt>,
}
Fields§
§id: Option<String>
xml:id (or equivalent in JSON)
extension: Option<Vec<Extension>>
Additional content defined by implementations
value: Option<UnsignedInt>
Primitive value for unsignedInt
Trait Implementations§
Source§impl Clone for UnsignedIntDt
impl Clone for UnsignedIntDt
Source§fn clone(&self) -> UnsignedIntDt
fn clone(&self) -> UnsignedIntDt
Returns a duplicate 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 Compare for UnsignedIntDt
impl Compare for UnsignedIntDt
Source§impl Convert for UnsignedIntDt
impl Convert for UnsignedIntDt
fn to_integer(&self) -> Result<Integer>
fn to_decimal(&self) -> Result<Decimal>
fn to_strings(&self) -> Result<String>
fn to_datetime(&self) -> Result<DateTime>
fn to_boolean(&self) -> Result<Boolean>
Source§impl Debug for UnsignedIntDt
impl Debug for UnsignedIntDt
Source§impl<'de> Deserialize<'de> for UnsignedIntDt
impl<'de> Deserialize<'de> for UnsignedIntDt
fn deserialize<De>(deserializer: De) -> Result<Self>where
De: Deserializer<'de>,
Source§impl Display for UnsignedIntDt
impl Display for UnsignedIntDt
Source§impl Element for UnsignedIntDt
impl Element for UnsignedIntDt
Source§impl Executor for UnsignedIntDt
impl Executor for UnsignedIntDt
fn element(&self, symbol: &String, index: &Option<usize>) -> Result<Collection>
fn to_collection(&self, _index: &Option<usize>) -> Collection
fn child(&self, _index: usize) -> Result<Collection>
Source§impl FromStr for UnsignedIntDt
impl FromStr for UnsignedIntDt
Source§impl Primitive for UnsignedIntDt
impl Primitive for UnsignedIntDt
Source§impl Serialize for UnsignedIntDt
impl Serialize for UnsignedIntDt
impl DataType for UnsignedIntDt
Auto Trait Implementations§
impl Freeze for UnsignedIntDt
impl RefUnwindSafe for UnsignedIntDt
impl Send for UnsignedIntDt
impl Sync for UnsignedIntDt
impl Unpin for UnsignedIntDt
impl UnwindSafe for UnsignedIntDt
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