Struct hdbconnect::types::SecondTime[][src]

pub struct SecondTime(_);

Implementation of HANA's SecondTime.

The type is used internally to implement serialization to the wire.

HANA allows input of empty strings, they are mapped to 0, all other legal values are mapped to Hours * 60*60 + Minutes * 60 + Seconds + 1 < 86400.

When reading, we treat 0 and 1 as "00:00:00".

Methods

impl SecondTime
[src]

Factory method for SecondTime with all fields.

Convert into tuple of "elements".

Parses a SecondTime from a String.

Note that Chrono types serialize as formatted Strings. We parse such (and other) Strings and construct a SecondTime.

Trait Implementations

impl Clone for SecondTime
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SecondTime
[src]

Formats the value using the given formatter. Read more

impl Display for SecondTime
[src]

Formats the value using the given formatter. Read more

impl PartialEq<SecondTime> for SecondTime
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for SecondTime

impl Sync for SecondTime