Struct spinoso_time::tzrs::ToA

source ·
pub struct ToA {
    pub sec: u8,
    pub min: u8,
    pub hour: u8,
    pub day: u8,
    pub month: u8,
    pub year: i32,
    pub wday: u8,
    pub yday: u16,
    pub isdst: bool,
    pub zone: String,
}
Expand description

Serialized representation of a timestamp using a ten-element array of datetime components.

[sec, min, hour, day, month, year, wday, yday, isdst, zone]

Fields§

§sec: u8

The second of the minute 0..=59 for the source time.

§min: u8

The minute of the hour 0..=59 for the source time.

§hour: u8

The hour of the day 0..=23 for the source time.

§day: u8

The day of the month 1..=n for the source time.

§month: u8

The month of the year 1..=12 for the source time.

§year: i32

The year (including the century) for the source time.

§wday: u8

An integer representing the day of the week, 0..=6, with Sunday == 0 for the source time.

§yday: u16

An integer representing the day of the year, 1..=366 for the source time.

§isdst: bool

Whether the source time occurs during Daylight Saving Time in its time zone.

§zone: String

The timezone used for the source time.

Trait Implementations§

source§

impl Clone for ToA

source§

fn clone(&self) -> ToA

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 ToA

source§

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

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

impl From<Time> for ToA

source§

fn from(time: Time) -> Self

Converts to this type from the input type.
source§

impl PartialEq for ToA

source§

fn eq(&self, other: &ToA) -> 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<ToA> for Time

source§

fn try_from(to_a: ToA) -> Result<Self>

Create a new Time object base on a ToA

Note: This converting from a Time object to a ToA and back again is lossy since ToA does not store nanoseconds.

§Examples
let now = Time::local(2022, 7, 8, 12, 34, 56, 1000)?;
let to_a = now.to_array();
let from_to_a = Time::try_from(to_a)?;
assert_eq!(now.second(), from_to_a.second());
assert_ne!(now.nanoseconds(), from_to_a.nanoseconds());
§Errors

Can produce a TimeError, generally when provided values are out of range.

§

type Error = TimeError

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

impl Eq for ToA

source§

impl StructuralPartialEq for ToA

Auto Trait Implementations§

§

impl Freeze for ToA

§

impl RefUnwindSafe for ToA

§

impl Send for ToA

§

impl Sync for ToA

§

impl Unpin for ToA

§

impl UnwindSafe for ToA

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.