pub struct StartTimestamp(pub OffsetDateTime);Expand description
A timestamp which will be align with the start of a ParsedTimestamp. Meaning, it will
take the minimum value of all omitted components.
Tuple Fields§
§0: OffsetDateTimeTrait Implementations§
Source§impl Clone for StartTimestamp
impl Clone for StartTimestamp
Source§fn clone(&self) -> StartTimestamp
fn clone(&self) -> StartTimestamp
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 moreimpl Copy for StartTimestamp
Source§impl Debug for StartTimestamp
impl Debug for StartTimestamp
impl Eq for StartTimestamp
Source§impl From<StartTimestamp> for OffsetDateTime
impl From<StartTimestamp> for OffsetDateTime
Source§fn from(value: StartTimestamp) -> Self
fn from(value: StartTimestamp) -> Self
Converts to this type from the input type.
Source§impl From<StartTimestamp> for SystemTime
impl From<StartTimestamp> for SystemTime
Source§fn from(value: StartTimestamp) -> Self
fn from(value: StartTimestamp) -> Self
Converts to this type from the input type.
Source§impl FromStr for StartTimestamp
impl FromStr for StartTimestamp
Source§impl PartialEq for StartTimestamp
impl PartialEq for StartTimestamp
impl StructuralPartialEq for StartTimestamp
Source§impl TryFrom<ParsedTimestamp> for StartTimestamp
impl TryFrom<ParsedTimestamp> for StartTimestamp
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for StartTimestamp
impl RefUnwindSafe for StartTimestamp
impl Send for StartTimestamp
impl Sync for StartTimestamp
impl Unpin for StartTimestamp
impl UnsafeUnpin for StartTimestamp
impl UnwindSafe for StartTimestamp
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