pub struct DayTimeDurationValue {
pub negative: bool,
pub days: u32,
pub hours: u32,
pub minutes: u32,
pub seconds: Decimal,
}Expand description
xs:dayTimeDuration (XSD 1.1)
Fields§
§negative: bool§days: u32§hours: u32§minutes: u32§seconds: DecimalTrait Implementations§
Source§impl Clone for DayTimeDurationValue
impl Clone for DayTimeDurationValue
Source§fn clone(&self) -> DayTimeDurationValue
fn clone(&self) -> DayTimeDurationValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DayTimeDurationValue
impl Debug for DayTimeDurationValue
Source§impl Display for DayTimeDurationValue
impl Display for DayTimeDurationValue
Source§impl PartialEq for DayTimeDurationValue
impl PartialEq for DayTimeDurationValue
Source§fn eq(&self, other: &DayTimeDurationValue) -> bool
fn eq(&self, other: &DayTimeDurationValue) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for DayTimeDurationValue
impl PartialOrd for DayTimeDurationValue
impl StructuralPartialEq for DayTimeDurationValue
Auto Trait Implementations§
impl Freeze for DayTimeDurationValue
impl RefUnwindSafe for DayTimeDurationValue
impl Send for DayTimeDurationValue
impl Sync for DayTimeDurationValue
impl Unpin for DayTimeDurationValue
impl UnsafeUnpin for DayTimeDurationValue
impl UnwindSafe for DayTimeDurationValue
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