pub struct TimestampSecs(pub i64);Expand description
Unix timestamp in seconds since epoch.
Used for most Datadog API endpoints that accept time ranges.
Tuple Fields§
§0: i64Implementations§
Source§impl TimestampSecs
impl TimestampSecs
Sourcepub const fn from_millis(ms: i64) -> Self
pub const fn from_millis(ms: i64) -> Self
Create a timestamp from milliseconds.
Sourcepub fn seconds_ago(seconds: i64) -> Self
pub fn seconds_ago(seconds: i64) -> Self
Create a timestamp N seconds ago from now.
Sourcepub fn minutes_ago(minutes: i64) -> Self
pub fn minutes_ago(minutes: i64) -> Self
Create a timestamp N minutes ago from now.
Trait Implementations§
Source§impl Clone for TimestampSecs
impl Clone for TimestampSecs
Source§fn clone(&self) -> TimestampSecs
fn clone(&self) -> TimestampSecs
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 TimestampSecs
impl Debug for TimestampSecs
Source§impl<'de> Deserialize<'de> for TimestampSecs
impl<'de> Deserialize<'de> for TimestampSecs
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for TimestampSecs
impl Display for TimestampSecs
Source§impl From<Duration> for TimestampSecs
impl From<Duration> for TimestampSecs
Source§impl From<TimestampSecs> for TimestampMillis
impl From<TimestampSecs> for TimestampMillis
Source§fn from(ts: TimestampSecs) -> Self
fn from(ts: TimestampSecs) -> Self
Converts to this type from the input type.
Source§impl From<TimestampSecs> for i64
impl From<TimestampSecs> for i64
Source§fn from(ts: TimestampSecs) -> Self
fn from(ts: TimestampSecs) -> Self
Converts to this type from the input type.
Source§impl From<i64> for TimestampSecs
impl From<i64> for TimestampSecs
Source§impl Hash for TimestampSecs
impl Hash for TimestampSecs
Source§impl Ord for TimestampSecs
impl Ord for TimestampSecs
Source§fn cmp(&self, other: &TimestampSecs) -> Ordering
fn cmp(&self, other: &TimestampSecs) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TimestampSecs
impl PartialEq for TimestampSecs
Source§impl PartialOrd for TimestampSecs
impl PartialOrd for TimestampSecs
Source§impl Serialize for TimestampSecs
impl Serialize for TimestampSecs
impl Copy for TimestampSecs
impl Eq for TimestampSecs
impl StructuralPartialEq for TimestampSecs
Auto Trait Implementations§
impl Freeze for TimestampSecs
impl RefUnwindSafe for TimestampSecs
impl Send for TimestampSecs
impl Sync for TimestampSecs
impl Unpin for TimestampSecs
impl UnwindSafe for TimestampSecs
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.