pub struct DicomDateTime {
pub date: DicomDate,
pub time: Option<DicomTime>,
pub offset_minutes: Option<i16>,
}Expand description
A DICOM DT (DateTime) value: YYYYMMDDHHMMSS.FFFFFF+ZZZZ.
Fields§
§date: DicomDate§time: Option<DicomTime>§offset_minutes: Option<i16>UTC offset in minutes, e.g. +0530 → 330, -0500 → -300.
Implementations§
Trait Implementations§
Source§impl Clone for DicomDateTime
impl Clone for DicomDateTime
Source§fn clone(&self) -> DicomDateTime
fn clone(&self) -> DicomDateTime
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 Debug for DicomDateTime
impl Debug for DicomDateTime
Source§impl Display for DicomDateTime
impl Display for DicomDateTime
Source§impl PartialEq for DicomDateTime
impl PartialEq for DicomDateTime
impl StructuralPartialEq for DicomDateTime
Auto Trait Implementations§
impl Freeze for DicomDateTime
impl RefUnwindSafe for DicomDateTime
impl Send for DicomDateTime
impl Sync for DicomDateTime
impl Unpin for DicomDateTime
impl UnsafeUnpin for DicomDateTime
impl UnwindSafe for DicomDateTime
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