[][src]Struct gwasm_api::timeout::Timeout

pub struct Timeout(_);

Wrapper type for NaiveTime

Timeout can be generated from str only, and accepts format %H:%M:%S. Note that zero timeout is treated as an error: Error::ZeroTimeoutError.

Example:

use gwasm_api::timeout::Timeout;
use std::str::FromStr;
use chrono::naive::NaiveTime;

assert!(Timeout::from_str("00:00:10").is_ok());
assert!(Timeout::from_str("10").is_err());
assert!(Timeout::from_str("00:00:00").is_err());

Trait Implementations

impl Clone for Timeout[src]

impl Copy for Timeout[src]

impl PartialEq<Timeout> for Timeout[src]

impl Debug for Timeout[src]

impl Display for Timeout[src]

impl FromStr for Timeout[src]

type Err = Error

The associated error which can be returned from parsing.

impl StructuralPartialEq for Timeout[src]

impl Serialize for Timeout[src]

Auto Trait Implementations

impl Send for Timeout

impl Sync for Timeout

impl Unpin for Timeout

impl UnwindSafe for Timeout

impl RefUnwindSafe for Timeout

Blanket Implementations

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = !

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self