Struct oracle::IntervalYM [] [src]

pub struct IntervalYM {
    pub years: i32,
    pub months: i32,
    pub precision: u8,
}

Interval type corresponding to Oracle type: INTERVAL YEAR TO MONTH.

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

Fields

Methods

impl IntervalYM
[src]

[src]

Trait Implementations

impl Debug for IntervalYM
[src]

[src]

Formats the value using the given formatter.

impl Clone for IntervalYM
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for IntervalYM
[src]

impl PartialEq for IntervalYM
[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 IntervalYM
[src]

[src]

Formats the value using the given formatter. Read more

impl FromStr for IntervalYM
[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 IntervalYM
[src]

impl ToSql for IntervalYM
[src]