twitch_types::time

Struct TimestampRef

Source
pub struct TimestampRef(/* private fields */);
Available on crate feature timestamp only.
Expand description

RFC3339 timestamp

Implementations§

Source§

impl TimestampRef

Source

pub fn from_str(raw: &str) -> Result<&Self, TimestampParseError>

Transparently reinterprets the string slice as a strongly-typed TimestampRef if it conforms to Timestamp

Source

pub const unsafe fn from_str_unchecked(raw: &str) -> &Self

Transparently reinterprets the string slice as a strongly-typed TimestampRef without validating

Source

pub fn from_static(raw: &'static str) -> &'static Self

Transparently reinterprets the static string slice as a strongly-typed TimestampRef if it conforms to Timestamp

§Panics

This function will panic if the provided raw string is not valid.

Source

pub fn into_owned(self: Box<TimestampRef>) -> Timestamp

Converts a Box<TimestampRef> into a Timestamp without copying or allocating

Source

pub const fn as_str(&self) -> &str

Provides access to the underlying value as a string slice.

Source§

impl TimestampRef

Source§

impl TimestampRef

Source

pub fn normalize(&self) -> Result<Cow<'_, TimestampRef>, TimestampParseError>

Normalize the timestamp into UTC time.

§Examples
use twitch_types::Timestamp;

let time = Timestamp::try_from("2021-07-01T13:37:00Z")?;
assert_eq!(time.normalize()?.as_ref(), &time);
let time2 = Timestamp::try_from("2021-07-01T13:37:00-01:00")?;
assert_ne!(time2.normalize()?.as_ref(), &time2);
Source

pub fn is_before<T: ?Sized>(&self, other: &T) -> bool
where Self: PartialOrd<T>,

Compare another time and return self < other.

§Examples
use twitch_types::Timestamp;

let time2021 = Timestamp::try_from("2021-07-01T13:37:00Z").unwrap();
let time2020 = Timestamp::try_from("2020-07-01T13:37:00Z").unwrap();
assert!(time2020.is_before(&time2021));
Source

pub fn to_day(&self) -> Timestamp

Make a timestamp with the time component set to 00:00:00.

§Examples
use twitch_types::Timestamp;

let time = Timestamp::try_from("2021-07-01T13:37:00Z").unwrap();
assert_eq!(time.to_day().as_str(), "2021-07-01T00:00:00Z");
Source

pub fn year(&self) -> &str

Get the year

§Examples
use twitch_types::Timestamp;

let time = Timestamp::try_from("2021-07-01T13:37:00Z").unwrap();
assert_eq!(time.year(), "2021");
Source

pub fn month(&self) -> &str

Get the month

§Examples
use twitch_types::Timestamp;

let time = Timestamp::try_from("2021-07-01T13:37:00Z").unwrap();
assert_eq!(time.month(), "07");
Source

pub fn day(&self) -> &str

Get the day

§Examples
use twitch_types::Timestamp;

let time = Timestamp::try_from("2021-07-01T13:37:00Z").unwrap();
assert_eq!(time.day(), "01");
Source

pub fn hour(&self) -> &str

Get the hour

§Examples
use twitch_types::Timestamp;

let time = Timestamp::try_from("2021-07-01T13:37:00Z").unwrap();
assert_eq!(time.hour(), "13");
Source

pub fn minute(&self) -> &str

Get the minute

§Examples
use twitch_types::Timestamp;

let time = Timestamp::try_from("2021-07-01T13:37:00Z").unwrap();
assert_eq!(time.minute(), "37");
Source

pub fn second(&self) -> &str

Get the second

§Examples
use twitch_types::Timestamp;

let time = Timestamp::try_from("2021-07-01T13:37:00Z").unwrap();
assert_eq!(time.second(), "00");
Source

pub fn millis(&self) -> Option<&str>

Get the millis

§Examples
use twitch_types::Timestamp;

let time = Timestamp::try_from("2021-07-01T13:37:00.123Z").unwrap();
assert_eq!(time.millis(), Some("123"));
let time = Timestamp::try_from("2021-07-01T13:37:00Z").unwrap();
assert_eq!(time.millis(), None);
Source§

impl TimestampRef

Source

pub fn to_utc(&self) -> OffsetDateTime

Available on crate feature time only.

Construct into a OffsetDateTime time with a guaranteed UTC offset.

§Panics

This method assumes the timestamp is a valid rfc3339 timestamp, and panics if not.

Source

pub fn to_fixed_offset(&self) -> OffsetDateTime

Available on crate feature time only.

Construct into a OffsetDateTime time.

§Panics

This method assumes the timestamp is a valid rfc3339 timestamp, and panics if not.

Trait Implementations§

Source§

impl AsRef<TimestampRef> for Timestamp

Source§

fn as_ref(&self) -> &TimestampRef

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl AsRef<str> for TimestampRef

Source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Borrow<TimestampRef> for Timestamp

Source§

fn borrow(&self) -> &TimestampRef

Immutably borrows from an owned value. Read more
Source§

impl Borrow<str> for TimestampRef

Source§

fn borrow(&self) -> &str

Immutably borrows from an owned value. Read more
Source§

impl Debug for TimestampRef

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de: 'a, 'a> Deserialize<'de> for &'a TimestampRef

Available on crate feature serde only.
Source§

fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<'de> Deserialize<'de> for Box<TimestampRef>

Available on crate feature serde only.
Source§

fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for TimestampRef

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a, 'b: 'a> From<&'a Cow<'b, TimestampRef>> for &'a TimestampRef

Source§

fn from(r: &'a Cow<'b, TimestampRef>) -> &'a TimestampRef

Converts to this type from the input type.
Source§

impl<'a> From<&'a Timestamp> for &'a TimestampRef

Source§

fn from(owned: &'a Timestamp) -> Self

Converts to this type from the input type.
Source§

impl From<&TimestampRef> for Arc<TimestampRef>

Source§

fn from(r: &TimestampRef) -> Self

Converts to this type from the input type.
Source§

impl<'a> From<&'a TimestampRef> for Cow<'a, TimestampRef>

Source§

fn from(r: &'a TimestampRef) -> Self

Converts to this type from the input type.
Source§

impl From<&TimestampRef> for Rc<TimestampRef>

Source§

fn from(r: &TimestampRef) -> Self

Converts to this type from the input type.
Source§

impl From<&TimestampRef> for Timestamp

Source§

fn from(s: &TimestampRef) -> Self

Converts to this type from the input type.
Source§

impl From<Timestamp> for Box<TimestampRef>

Source§

fn from(r: Timestamp) -> Self

Converts to this type from the input type.
Source§

impl Hash for TimestampRef

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
Source§

impl<'a> IntoCow<'a, TimestampRef> for &'a Timestamp

Source§

fn into_cow(self) -> Cow<'a, TimestampRef>

Make the cow with proper ownership, muu
Source§

impl<'a> IntoCow<'a, TimestampRef> for &'a TimestampRef

Source§

fn into_cow(self) -> Cow<'a, TimestampRef>

Make the cow with proper ownership, muu
Source§

impl<'a> IntoCow<'a, TimestampRef> for Timestamp

Source§

fn into_cow(self) -> Cow<'a, TimestampRef>

Make the cow with proper ownership, muu
Source§

impl PartialEq<&TimestampRef> for Timestamp

Source§

fn eq(&self, other: &&TimestampRef) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<OffsetDateTime> for TimestampRef

Available on crate feature time only.
Source§

fn eq(&self, other: &OffsetDateTime) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<Timestamp> for &TimestampRef

Source§

fn eq(&self, other: &Timestamp) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<Timestamp> for TimestampRef

Source§

fn eq(&self, other: &Timestamp) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<TimestampRef> for Timestamp

Source§

fn eq(&self, other: &TimestampRef) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq for TimestampRef

Source§

fn eq(&self, other: &TimestampRef) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd<OffsetDateTime> for TimestampRef

Available on crate feature time only.
Source§

fn partial_cmp(&self, other: &OffsetDateTime) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl PartialOrd<Timestamp> for TimestampRef

Source§

fn partial_cmp(&self, other: &Timestamp) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl PartialOrd for TimestampRef

Source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for TimestampRef

Available on crate feature serde only.
Source§

fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more
Source§

impl ToOwned for TimestampRef

Source§

type Owned = Timestamp

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> Self::Owned

Creates owned data from borrowed data, usually by cloning. Read more
1.63.0 · Source§

fn clone_into(&self, target: &mut Self::Owned)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<'a> TryFrom<&'a String> for &'a TimestampRef

Source§

type Error = TimestampParseError

The type returned in the event of a conversion error.
Source§

fn try_from(string: &'a String) -> Result<Self, TimestampParseError>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a str> for &'a TimestampRef

Source§

type Error = TimestampParseError

The type returned in the event of a conversion error.
Source§

fn try_from(s: &'a str) -> Result<&'a TimestampRef, Self::Error>

Performs the conversion.
Source§

impl Eq for TimestampRef

Source§

impl StructuralPartialEq for TimestampRef

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more