common_time::interval

Struct IntervalFormat

source
pub struct IntervalFormat {
    pub years: i32,
    pub months: i32,
    pub days: i32,
    pub hours: i64,
    pub minutes: i64,
    pub seconds: i64,
    pub microseconds: i64,
}
Expand description

https://www.postgresql.org/docs/current/datatype-datetime.html#DATATYPE-INTERVAL-OUTPUT support postgres format, iso8601 format and sql standard format

Fields§

§years: i32§months: i32§days: i32§hours: i64§minutes: i64§seconds: i64§microseconds: i64

Implementations§

source§

impl IntervalFormat

source

pub fn is_zero(&self) -> bool

All the field in the interval is 0

source

pub fn has_year_month(&self) -> bool

Determine if year or month exist

source

pub fn has_day(&self) -> bool

Determine if day exists

source

pub fn has_time_part_positive(&self) -> bool

Determine time part(includes hours, minutes, seconds, microseconds) is positive

source

pub fn has_time_part(&self) -> bool

source

pub fn to_iso8601_string(&self) -> String

Convert IntervalFormat to iso8601 format string ISO pattern - PnYnMnDTnHnMnS for example: P1Y2M3DT4H5M6.789S

source

pub fn to_sql_standard_string(self) -> String

Convert IntervalFormat to sql standard format string SQL standard pattern - [years - months] [days] [hours:minutes:seconds[.fractional seconds]] for example: 1-2 3:4:5.678

source

pub fn to_postgres_string(&self) -> String

Convert IntervalFormat to postgres format string postgres pattern - [years - months] [days] [hours[:minutes[:seconds[.fractional seconds]]]] for example: -1 year -2 mons +3 days -04:05:06

source

fn get_postgres_time_part(&self) -> String

get postgres time part(include hours, minutes, seconds, microseconds)

source

fn padding_i64(val: i64) -> String

padding i64 to string with 2 digits

Trait Implementations§

source§

impl Clone for IntervalFormat

source§

fn clone(&self) -> IntervalFormat

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 IntervalFormat

source§

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

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

impl Default for IntervalFormat

source§

fn default() -> IntervalFormat

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for IntervalFormat

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

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

impl From<IntervalDayTime> for IntervalFormat

source§

fn from(interval: IntervalDayTime) -> Self

Converts to this type from the input type.
source§

impl From<IntervalMonthDayNano> for IntervalFormat

source§

fn from(interval: IntervalMonthDayNano) -> Self

Converts to this type from the input type.
source§

impl From<IntervalYearMonth> for IntervalFormat

source§

fn from(interval: IntervalYearMonth) -> Self

Converts to this type from the input type.
source§

impl Serialize for IntervalFormat

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

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

impl Copy for IntervalFormat

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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

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

source§

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>,

source§

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>,

source§

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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,