pub struct XmpTime {
pub hour: i32,
pub minute: i32,
pub second: i32,
pub nanosecond: i32,
pub time_zone: Option<XmpTimeZone>,
}
Expand description
The time portion of XmpDateTime
.
Fields§
§hour: i32
The hour in the range 0..23.
minute: i32
The minute in the range 0..59.
second: i32
The second in the range 0..59.
nanosecond: i32
Nanoseconds within a second, often left as zero.
time_zone: Option<XmpTimeZone>
The time zone, if known.
Trait Implementations§
impl Eq for XmpTime
impl StructuralPartialEq for XmpTime
Auto Trait Implementations§
impl Freeze for XmpTime
impl RefUnwindSafe for XmpTime
impl Send for XmpTime
impl Sync for XmpTime
impl Unpin for XmpTime
impl UnwindSafe for XmpTime
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