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

pub struct Delta { /* fields omitted */ }

Defines an RRDP delta.

Implementations

impl Delta[src]

pub fn new(session: RrdpSession, serial: u64, elements: DeltaElements) -> Self[src]

pub fn session(&self) -> RrdpSession[src]

pub fn serial(&self) -> u64[src]

pub fn time(&self) -> &Time[src]

pub fn elements(&self) -> &DeltaElements[src]

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

Total number of elements

This is a cheap approximation of the size of the delta that can help in determining the choice of how many deltas to include in a notification file.

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

pub fn unwrap(self) -> (RrdpSession, u64, DeltaElements)[src]

pub fn write_xml(&self, path: &PathBuf) -> Result<(), Error>[src]

pub fn xml(&self) -> Vec<u8>[src]

Trait Implementations

impl Clone for Delta[src]

impl Debug for Delta[src]

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

impl Eq for Delta[src]

impl PartialEq<Delta> for Delta[src]

impl Serialize for Delta[src]

impl StructuralEq for Delta[src]

impl StructuralPartialEq for Delta[src]

Auto Trait Implementations

impl RefUnwindSafe for Delta

impl Send for Delta

impl Sync for Delta

impl Unpin for Delta

impl UnwindSafe for Delta

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.