[][src]Enum cerk::kernel::DeliveryGuarantee

#[repr(u8)]pub enum DeliveryGuarantee {
    BestEffort,
    AtLeastOnce,
}

Message delivery guarantees for the routing (defined per port channel)

Variants

BestEffort

best effort: there is no guarantee that a message will be routed, the default

AtLeastOnce

At Least Once the message should be received at the destination

Implementations

impl DeliveryGuarantee[src]

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

Does the selected delivery guarantee requires an acknowledgment?

Trait Implementations

impl Clone for DeliveryGuarantee[src]

impl Copy for DeliveryGuarantee[src]

impl Debug for DeliveryGuarantee[src]

impl Default for DeliveryGuarantee[src]

impl From<DeliveryGuarantee> for Config[src]

impl PartialEq<DeliveryGuarantee> for DeliveryGuarantee[src]

impl StructuralPartialEq for DeliveryGuarantee[src]

impl TryFrom<&'_ Config> for DeliveryGuarantee[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Config> for DeliveryGuarantee[src]

type Error = Error

The type returned in the event of a conversion error.

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> 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,