Struct oracle::IntervalDS [] [src]

pub struct IntervalDS {
    pub days: i32,
    pub hours: i32,
    pub minutes: i32,
    pub seconds: i32,
    pub nanoseconds: i32,
    pub lfprecision: u8,
    pub fsprecision: u8,
}

Interval type corresponding to Oracle type: INTERVAL DAY TO SECOND.

Don't use this type directly in your applications. This is public for types implementing FromSql and ToSql traits.

Fields

Methods

impl IntervalDS
[src]

[src]

Trait Implementations

impl Debug for IntervalDS
[src]

[src]

Formats the value using the given formatter.

impl Clone for IntervalDS
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for IntervalDS
[src]

impl PartialEq for IntervalDS
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Display for IntervalDS
[src]

[src]

Formats the value using the given formatter. Read more

impl FromStr for IntervalDS
[src]

The associated error which can be returned from parsing.

[src]

Parses a string s to return a value of this type. Read more

impl FromSql for IntervalDS
[src]

impl ToSql for IntervalDS
[src]