[][src]Struct krill::commons::api::rrdp::CurrentObjects

pub struct CurrentObjects(_);

Defines a current set of published elements.

Implementations

impl CurrentObjects[src]

pub fn elements(&self) -> Vec<&PublishElement>[src]

impl CurrentObjects[src]

pub fn verify_delta(
    &self,
    delta: &DeltaElements,
    jail: &Rsync
) -> Result<(), PublicationDeltaError>
[src]

pub fn apply_delta(&mut self, delta: DeltaElements)[src]

Applies a delta to CurrentObjects. This will asume that the delta contains only valid updates for this delta.

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

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

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

pub fn to_list_reply(&self) -> ListReply[src]

Trait Implementations

impl Clone for CurrentObjects[src]

impl Debug for CurrentObjects[src]

impl Default for CurrentObjects[src]

impl<'de> Deserialize<'de> for CurrentObjects[src]

impl Eq for CurrentObjects[src]

impl PartialEq<CurrentObjects> for CurrentObjects[src]

impl Serialize for CurrentObjects[src]

impl StructuralEq for CurrentObjects[src]

impl StructuralPartialEq for CurrentObjects[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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.