[][src]Struct c3p0_mysql::mysql::time::Timespec

pub struct Timespec {
    pub sec: i64,
    pub nsec: i32,
}

A record specifying a time value in seconds and nanoseconds, where nanoseconds represent the offset from the given second.

For example a timespec of 1.2 seconds after the beginning of the epoch would be represented as {sec: 1, nsec: 200000000}.

Fields

sec: i64nsec: i32

Methods

impl Timespec[src]

pub fn new(sec: i64, nsec: i32) -> Timespec[src]

Trait Implementations

impl FromValue for Timespec

type Intermediate = ParseIr<Timespec>

fn from_value_opt(v: Value) -> Result<Self, FromValueError>

Will return Err(Error::FromValueError(v)) if could not convert v to Self.

fn get_intermediate(v: Value) -> Result<Self::Intermediate, FromValueError>

Will return Err(Error::FromValueError(v)) if v is not convertible to Self.

impl From<Timespec> for Value

impl ConvIr<Timespec> for ParseIr<Timespec>

impl Eq for Timespec[src]

impl Copy for Timespec[src]

impl Sub<Duration> for Timespec[src]

type Output = Timespec

The resulting type after applying the - operator.

impl Sub<Timespec> for Timespec[src]

type Output = Duration

The resulting type after applying the - operator.

impl Hash for Timespec[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Clone for Timespec[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Timespec[src]

impl Ord for Timespec[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl PartialEq<Timespec> for Timespec[src]

impl Add<Duration> for Timespec[src]

type Output = Timespec

The resulting type after applying the + operator.

impl PartialOrd<Timespec> for Timespec[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, Ir> FromRow for T where
    Ir: ConvIr<T>,
    T: FromValue<Intermediate = Ir>, 

impl<T> ToValue for T where
    T: Clone + Into<Value>, 

impl<T> Same<T> for T

type Output = T

Should always be Self