Struct af_core::time::Time [−][src]
A timestamp with a time zone.
Implementations
impl Time[src]
pub const fn max_value() -> Time[src]
Returns a value representing the maximum local date and time.
pub const fn min_value() -> Time[src]
Returns a value representing the minimum local date and time.
pub fn now() -> Time[src]
Returns a value representing the current local date and time.
pub fn from_unix_ms(timestamp: i64) -> Self[src]
Returns a value representing the given Unix timestamp in milliseconds.
pub fn as_rfc3339(&self) -> impl Display[src]
Formats the time according to RFC 3339.
pub fn date(&self) -> Date[src]
Returns the date component of the time.
pub fn elapsed(&self) -> Duration[src]
Returns the duration elapsed since this time occurred.
If the time is in the future, this function returns Duration::ZERO.
pub fn format<'a>(&self, fmt: &'a str) -> impl Display + 'a[src]
Format the time for display.
pub fn hms(&self) -> (usize, usize, usize)[src]
Returns the hour, minute, and second numbers.
Equivalent to (time.hour(), time.minute(), time.second()).
pub fn hour(&self) -> usize[src]
Returns the hour from 0 to 23.
pub fn minute(&self) -> usize[src]
Returns the minute from 0 to 59.
pub fn second(&self) -> usize[src]
Returns the second number from 0 to 59.
pub fn start_of_day(&self) -> Time[src]
Returns the start time of the day represented by this time value.
pub const fn to_local(&self) -> Self[src]
Converts to the local time zone.
pub const fn to_utc(&self) -> Self[src]
Converts to UTC.
pub const fn to_zone(&self, zone: Zone) -> Self[src]
Converts to the given time zone.
Trait Implementations
impl Add<Duration> for Time[src]
type Output = Self
The resulting type after applying the + operator.
fn add(self, rhs: Duration) -> Self::Output[src]
impl Add<Time> for Span[src]
type Output = Self
The resulting type after applying the + operator.
fn add(self, rhs: Time) -> Self::Output[src]
impl AddAssign<Time> for Span[src]
fn add_assign(&mut self, rhs: Time)[src]
impl Clone for Time[src]
impl Copy for Time[src]
impl Debug for Time[src]
impl Display for Time[src]
impl Eq for Time[src]
impl From<Time> for Span[src]
impl<'a> FromSql<'a> for Time[src]
fn from_sql(
ty: &Type,
raw: &'a [u8]
) -> Result<Self, Box<dyn Error + Sync + Send>>[src]
ty: &Type,
raw: &'a [u8]
) -> Result<Self, Box<dyn Error + Sync + Send>>
fn accepts(ty: &Type) -> bool[src]
pub fn from_sql_null(
ty: &Type
) -> Result<Self, Box<dyn Error + 'static + Sync + Send, Global>>[src]
ty: &Type
) -> Result<Self, Box<dyn Error + 'static + Sync + Send, Global>>
pub fn from_sql_nullable(
ty: &Type,
raw: Option<&'a [u8]>
) -> Result<Self, Box<dyn Error + 'static + Sync + Send, Global>>[src]
ty: &Type,
raw: Option<&'a [u8]>
) -> Result<Self, Box<dyn Error + 'static + Sync + Send, Global>>
impl Hash for Time[src]
fn hash<H: Hasher>(&self, state: &mut H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl Ord for Time[src]
fn cmp(&self, other: &Self) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
impl PartialEq<Time> for Time[src]
impl PartialOrd<Time> for Time[src]
fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl Sub<Duration> for Time[src]
type Output = Self
The resulting type after applying the - operator.
fn sub(self, rhs: Duration) -> Self::Output[src]
impl Sub<Time> for Time[src]
type Output = Duration
The resulting type after applying the - operator.
fn sub(self, rhs: Time) -> Self::Output[src]
impl ToSql for Time[src]
Auto Trait Implementations
impl RefUnwindSafe for Time
impl Send for Time
impl Sync for Time
impl Unpin for Time
impl UnwindSafe for Time
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut Tⓘ[src]
impl<T> BorrowToSql for T where
T: ToSql, [src]
T: ToSql,
pub fn borrow_to_sql(&self) -> &dyn ToSql[src]
impl<T> From<T> for T[src]
impl<T> FromSqlOwned for T where
T: for<'a> FromSql<'a>, [src]
T: for<'a> FromSql<'a>,
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,