[][src]Struct rpki_rtr::payload::Timing

pub struct Timing {
    pub refresh: u32,
    pub retry: u32,
    pub expire: u32,
}

The timing parameters of a data exchange.

These three values are included in the end-of-data PDU of version 1 onwards.

Fields

refresh: u32

The number of seconds until a client should refresh its data.

retry: u32

The number of seconds a client whould wait before retrying to connect.

expire: u32

The number of secionds before data expires if not refreshed.

Implementations

impl Timing[src]

Trait Implementations

impl Clone for Timing[src]

impl Copy for Timing[src]

impl Debug for Timing[src]

impl Default for Timing[src]

Auto Trait Implementations

impl RefUnwindSafe for Timing

impl Send for Timing

impl Sync for Timing

impl Unpin for Timing

impl UnwindSafe for Timing

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.