[][src]Struct sequoia_openpgp::types::Duration

pub struct Duration(_);

A duration representable by OpenPGP.

Methods

impl Duration[src]

pub fn seconds(n: u32) -> Duration[src]

Returns a Duration with the given number of seconds.

pub fn minutes(n: u32) -> Result<Duration>[src]

Returns a Duration with the given number of minutes, if representable.

pub fn hours(n: u32) -> Result<Duration>[src]

Returns a Duration with the given number of hours, if representable.

pub fn days(n: u32) -> Result<Duration>[src]

Returns a Duration with the given number of days, if representable.

pub fn weeks(n: u32) -> Result<Duration>[src]

Returns a Duration with the given number of weeks, if representable.

pub fn as_secs(self) -> u64[src]

Returns the duration as seconds.

Trait Implementations

impl Arbitrary for Duration[src]

impl Clone for Duration[src]

impl Copy for Duration[src]

impl Debug for Duration[src]

impl Eq for Duration[src]

impl From<Duration> for u32[src]

impl From<Duration> for SystemDuration[src]

impl From<u32> for Duration[src]

impl Hash for Duration[src]

impl Ord for Duration[src]

impl PartialEq<Duration> for Duration[src]

impl PartialOrd<Duration> for Duration[src]

impl StructuralEq for Duration[src]

impl StructuralPartialEq for Duration[src]

impl TryFrom<Duration> for Duration[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

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

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

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

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, 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<V, T> VZip<V> for T where
    V: MultiLane<T>,