Struct twitch_types::time::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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method 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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method 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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method 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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method 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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method 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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method 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

This method 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

This method 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

This method 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

This method 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

This method 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

This method 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

This method 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

This method 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

This method 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

This method 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

This method 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

This method 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

§

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

§

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

§

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<'zf> ZeroFrom<'zf, Timestamp> for &'zf TimestampRef

Available on crate feature zerofrom only.
source§

fn zero_from(other: &'zf Timestamp) -> Self

Clone the other C into a struct that may retain references into C.
source§

impl<'zf> ZeroFrom<'zf, TimestampRef> for &'zf TimestampRef

Available on crate feature zerofrom only.
source§

fn zero_from(other: &'zf TimestampRef) -> Self

Clone the other C into a struct that may retain references into C.
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