Enum nakadion::api::CreateSubscriptionStatus[][src]

pub enum CreateSubscriptionStatus {
    AlreadyExists(Subscription),
    Created(Subscription),
}

The result of a successful request to create a subscription.

Creating a subscription is also considered successful if the subscription already existed at the time of the request.

Variants

A subscription already existed and the Subscription is contained

The Subscription did not exist and was newly created.

Methods

impl CreateSubscriptionStatus
[src]

Trait Implementations

impl Debug for CreateSubscriptionStatus
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateSubscriptionStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations