pub struct ParsedSignatureTimes {
pub unix_seconds: i64,
pub tz_offset_secs: i64,
pub tz_hhmm_range: Range<usize>,
}Expand description
Successful parse of the trailing <unix> <+HHMM> portion of a signature.
Fields§
§unix_seconds: i64Seconds in the author/committer field (before tz offset).
tz_offset_secs: i64Signed offset in seconds (from +HHMM / -HHMM).
tz_hhmm_range: Range<usize>Byte range of the +HHMM / -HHMM field in the original ident string.
Trait Implementations§
Source§impl Clone for ParsedSignatureTimes
impl Clone for ParsedSignatureTimes
Source§fn clone(&self) -> ParsedSignatureTimes
fn clone(&self) -> ParsedSignatureTimes
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 ParsedSignatureTimes
impl Debug for ParsedSignatureTimes
Source§impl PartialEq for ParsedSignatureTimes
impl PartialEq for ParsedSignatureTimes
impl Eq for ParsedSignatureTimes
impl StructuralPartialEq for ParsedSignatureTimes
Auto Trait Implementations§
impl Freeze for ParsedSignatureTimes
impl RefUnwindSafe for ParsedSignatureTimes
impl Send for ParsedSignatureTimes
impl Sync for ParsedSignatureTimes
impl Unpin for ParsedSignatureTimes
impl UnsafeUnpin for ParsedSignatureTimes
impl UnwindSafe for ParsedSignatureTimes
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