[][src]Enum nakadion::SubscriptionDiscovery

pub enum SubscriptionDiscovery {
    ExistingId(SubscriptionId),
    Application(SubscriptionRequest),
}

Describes how Nakadion should resolve the SubscriptionId to connect to a subscription.

Variants

ExistingId(SubscriptionId)

Connect with an existing SubscriptionId

Serialization(JSON)

{ "ExistingId": "the_subscription_id" }
Application(SubscriptionRequest)

Create a new subscription for the application and if it already exists use the existing subscription

Serialization(JSON)

The fields inside the "Application" objects are the fields of a deserialized SubscriptionRequest

{
    "Application": {
        "owning_application": "test_app",
        "event_types": ["event_type_1"],
        "read_from": "end"
    }
}

Trait Implementations

impl Clone for SubscriptionDiscovery[src]

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

Performs copy-assignment from source. Read more

impl Debug for SubscriptionDiscovery[src]

impl Display for SubscriptionDiscovery[src]

impl Serialize for SubscriptionDiscovery[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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