svix 1.96.1

Svix webhooks API client and webhook verification library
Documentation
// this file is @generated
use std::fmt;

use serde::{Deserialize, Serialize};

#[derive(
    Clone, Copy, Debug, Default, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize,
)]
pub enum EndpointDisabledTrigger {
    #[default]
    #[serde(rename = "manual")]
    Manual,
    #[serde(rename = "automatic")]
    Automatic,
}

impl fmt::Display for EndpointDisabledTrigger {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        let value = match self {
            Self::Manual => "manual",
            Self::Automatic => "automatic",
        };
        f.write_str(value)
    }
}