pub struct PositiveIntDt {
pub id: Option<String>,
pub extension: Option<Vec<Extension>>,
pub value: Option<PositiveInt>,
}
Expand description
正整数类型
1..2,147,483,647
Fields§
§id: Option<String>
xml:id (or equivalent in JSON)
extension: Option<Vec<Extension>>
Additional content defined by implementations
value: Option<PositiveInt>
Primitive value for positiveInt
Trait Implementations§
Source§impl Clone for PositiveIntDt
impl Clone for PositiveIntDt
Source§fn clone(&self) -> PositiveIntDt
fn clone(&self) -> PositiveIntDt
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 PositiveIntDt
impl Compare for PositiveIntDt
Source§impl Convert for PositiveIntDt
impl Convert for PositiveIntDt
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 PositiveIntDt
impl Debug for PositiveIntDt
Source§impl<'de> Deserialize<'de> for PositiveIntDt
impl<'de> Deserialize<'de> for PositiveIntDt
fn deserialize<De>(deserializer: De) -> Result<Self>where
De: Deserializer<'de>,
Source§impl Display for PositiveIntDt
impl Display for PositiveIntDt
Source§impl Element for PositiveIntDt
impl Element for PositiveIntDt
Source§impl Executor for PositiveIntDt
impl Executor for PositiveIntDt
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 From<i16> for PositiveIntDt
impl From<i16> for PositiveIntDt
Source§impl From<i32> for PositiveIntDt
impl From<i32> for PositiveIntDt
Source§impl From<i8> for PositiveIntDt
impl From<i8> for PositiveIntDt
Source§impl From<u16> for PositiveIntDt
impl From<u16> for PositiveIntDt
Source§impl From<u32> for PositiveIntDt
impl From<u32> for PositiveIntDt
Source§impl From<u8> for PositiveIntDt
impl From<u8> for PositiveIntDt
Source§impl FromStr for PositiveIntDt
impl FromStr for PositiveIntDt
Source§impl Primitive for PositiveIntDt
impl Primitive for PositiveIntDt
Source§impl Serialize for PositiveIntDt
impl Serialize for PositiveIntDt
impl DataType for PositiveIntDt
Auto Trait Implementations§
impl Freeze for PositiveIntDt
impl RefUnwindSafe for PositiveIntDt
impl Send for PositiveIntDt
impl Sync for PositiveIntDt
impl Unpin for PositiveIntDt
impl UnwindSafe for PositiveIntDt
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