[][src]Struct rpki::manifest::ManifestContent

pub struct ManifestContent { /* fields omitted */ }

The content of an RPKI manifest.

A manifests consists chiefly of a list of files and their hash value. You can access this list via the iter_uris method.

Methods

impl ManifestContent[src]

Important traits for ManifestIter
pub fn iter_uris(&self, base: Rsync) -> ManifestIter[src]

Returns an iterator over the files in the manifest.

Since the manifest only contains file names, the iterator needs a base URI to produce complete URIs. It is taken from base.

The returned iterator returns a pair of the file URI and the SHA256 hash of the file.

pub fn len(&self) -> usize[src]

Returns the number of entries in the file list.

pub fn is_empty(&self) -> bool[src]

Returns whether the file list is empty.

pub fn is_stale(&self) -> bool[src]

Returns whether the manifest is stale.

A manifest is stale if it’s nextUpdate time has passed.

Trait Implementations

impl Clone for ManifestContent[src]

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

Performs copy-assignment from source. Read more

impl Debug for ManifestContent[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.