[][src]Struct rpki::resources::AsBlocks

pub struct AsBlocks(_);

A possibly empty sequence of consecutive sets of AS numbers.

Methods

impl AsBlocks[src]

pub fn empty() -> Self[src]

Creates empty AS blocks.

pub fn from_resources(
    res: Option<&AsResources>
) -> Result<Self, ValidationError>
[src]

Creates AS blocks from AS resources.

If the AS resources are of the inherited variant, a validation error is returned.

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

Returns whether the blocks is empty.

pub fn iter(&self) -> impl Iterator<Item = &AsBlock>[src]

Returns an iterator over the individual AS number blocks.

pub fn validate_issued(
    &self,
    res: Option<&AsResources>,
    mode: Overclaim
) -> Result<AsBlocks, ValidationError>
[src]

Validates AS resources issued under these blocks.

impl AsBlocks[src]

pub fn encode(self) -> impl Values[src]

Trait Implementations

impl Clone for AsBlocks[src]

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

Performs copy-assignment from source. Read more

impl Debug for AsBlocks[src]

Auto Trait Implementations

impl Send for AsBlocks

impl Sync for AsBlocks

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.