Struct spinoso_time::tzrs::Offset

source ·
pub struct Offset { /* private fields */ }
Expand description

Represents the number of seconds offset from UTC.

Implementations§

source§

impl Offset

source

pub fn utc() -> Self

Generate a UTC based offset.

§Examples
let offset = Offset::utc();
assert!(offset.is_utc());

let time = Time::new(2022, 7, 29, 12, 36, 0, 0, offset)?;
assert!(time.is_utc());
source

pub fn local() -> Self

Generate an offset based on the detected local time zone of the system.

Detection is done by tzdb::local_tz, and if it fails will return a GMT timezone.

The system timezone is detected on the first call to this function and will be constant for the life of the program.

§Examples
let offset = Offset::local();
assert!(!offset.is_utc());

let time = Time::new(2022, 7, 29, 12, 36, 0, 0, offset)?;
assert!(!time.is_utc());
source

pub fn fixed(offset: i32) -> Result<Self, TimeError>

Generate an offset with a number of seconds from UTC.

§Examples
let offset = Offset::fixed(6600)?; // +0150
assert!(!offset.is_utc());

let time = Time::new(2022, 7, 29, 12, 36, 0, 0, offset)?;
assert!(!time.is_utc());

The offset must be in range:

let offset = Offset::fixed(500_000); // +0150
assert!(offset.is_err());
§Errors

Return a TimeError::TzOutOfRangeError when outside of range of acceptable offset of MIN_OFFSET_SECONDS to MAX_OFFSET_SECONDS.

source

pub fn is_utc(&self) -> bool

Returns whether this offset is UTC.

§Examples
let offset = Offset::utc();
assert!(offset.is_utc());

let offset = Offset::fixed(6600)?; // +0150
assert!(!offset.is_utc());

Trait Implementations§

source§

impl Clone for Offset

source§

fn clone(&self) -> Offset

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Offset

source§

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

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

impl From<TimeZoneRef<'static>> for Offset

source§

fn from(tz: TimeZoneRef<'static>) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Offset

source§

fn eq(&self, other: &Offset) -> 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 TryFrom<&[u8]> for Offset

§

type Error = TimeError

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

fn try_from(input: &[u8]) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<&str> for Offset

source§

fn try_from(input: &str) -> Result<Self, Self::Error>

Construct a Offset based on the accepted MRI values.

Accepts:

  • [+/-]HH[:]MM
  • A-I representing +01:00 to +09:00.
  • K-M representing +10:00 to +12:00.
  • N-Y representing -01:00 to -12:00.
  • Z representing UTC/Zulu time (0 offset).
§

type Error = TimeError

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

impl TryFrom<String> for Offset

§

type Error = TimeError

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

fn try_from(input: String) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<i32> for Offset

source§

fn try_from(seconds: i32) -> Result<Self, Self::Error>

Construct a Offset with the offset in seconds from UTC.

See Offset::fixed.

§

type Error = TimeError

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

impl Copy for Offset

source§

impl Eq for Offset

source§

impl StructuralPartialEq for Offset

Auto Trait Implementations§

§

impl Freeze for Offset

§

impl RefUnwindSafe for Offset

§

impl Send for Offset

§

impl Sync for Offset

§

impl Unpin for Offset

§

impl UnwindSafe for Offset

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

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

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.