stripe_misc/
gelato_email_report_error.rs

1#[derive(Clone, Debug)]
2#[cfg_attr(feature = "serialize", derive(serde::Serialize))]
3#[cfg_attr(feature = "deserialize", derive(serde::Deserialize))]
4pub struct GelatoEmailReportError {
5    /// A short machine-readable string giving the reason for the verification failure.
6    pub code: Option<GelatoEmailReportErrorCode>,
7    /// A human-readable message giving the reason for the failure.
8    /// These messages can be shown to your users.
9    pub reason: Option<String>,
10}
11#[doc(hidden)]
12pub struct GelatoEmailReportErrorBuilder {
13    code: Option<Option<GelatoEmailReportErrorCode>>,
14    reason: Option<Option<String>>,
15}
16
17#[allow(
18    unused_variables,
19    irrefutable_let_patterns,
20    clippy::let_unit_value,
21    clippy::match_single_binding,
22    clippy::single_match
23)]
24const _: () = {
25    use miniserde::de::{Map, Visitor};
26    use miniserde::json::Value;
27    use miniserde::{Deserialize, Result, make_place};
28    use stripe_types::miniserde_helpers::FromValueOpt;
29    use stripe_types::{MapBuilder, ObjectDeser};
30
31    make_place!(Place);
32
33    impl Deserialize for GelatoEmailReportError {
34        fn begin(out: &mut Option<Self>) -> &mut dyn Visitor {
35            Place::new(out)
36        }
37    }
38
39    struct Builder<'a> {
40        out: &'a mut Option<GelatoEmailReportError>,
41        builder: GelatoEmailReportErrorBuilder,
42    }
43
44    impl Visitor for Place<GelatoEmailReportError> {
45        fn map(&mut self) -> Result<Box<dyn Map + '_>> {
46            Ok(Box::new(Builder {
47                out: &mut self.out,
48                builder: GelatoEmailReportErrorBuilder::deser_default(),
49            }))
50        }
51    }
52
53    impl MapBuilder for GelatoEmailReportErrorBuilder {
54        type Out = GelatoEmailReportError;
55        fn key(&mut self, k: &str) -> Result<&mut dyn Visitor> {
56            Ok(match k {
57                "code" => Deserialize::begin(&mut self.code),
58                "reason" => Deserialize::begin(&mut self.reason),
59                _ => <dyn Visitor>::ignore(),
60            })
61        }
62
63        fn deser_default() -> Self {
64            Self { code: Deserialize::default(), reason: Deserialize::default() }
65        }
66
67        fn take_out(&mut self) -> Option<Self::Out> {
68            let (Some(code), Some(reason)) = (self.code, self.reason.take()) else {
69                return None;
70            };
71            Some(Self::Out { code, reason })
72        }
73    }
74
75    impl Map for Builder<'_> {
76        fn key(&mut self, k: &str) -> Result<&mut dyn Visitor> {
77            self.builder.key(k)
78        }
79
80        fn finish(&mut self) -> Result<()> {
81            *self.out = self.builder.take_out();
82            Ok(())
83        }
84    }
85
86    impl ObjectDeser for GelatoEmailReportError {
87        type Builder = GelatoEmailReportErrorBuilder;
88    }
89
90    impl FromValueOpt for GelatoEmailReportError {
91        fn from_value(v: Value) -> Option<Self> {
92            let Value::Object(obj) = v else {
93                return None;
94            };
95            let mut b = GelatoEmailReportErrorBuilder::deser_default();
96            for (k, v) in obj {
97                match k.as_str() {
98                    "code" => b.code = FromValueOpt::from_value(v),
99                    "reason" => b.reason = FromValueOpt::from_value(v),
100                    _ => {}
101                }
102            }
103            b.take_out()
104        }
105    }
106};
107/// A short machine-readable string giving the reason for the verification failure.
108#[derive(Copy, Clone, Eq, PartialEq)]
109pub enum GelatoEmailReportErrorCode {
110    EmailUnverifiedOther,
111    EmailVerificationDeclined,
112}
113impl GelatoEmailReportErrorCode {
114    pub fn as_str(self) -> &'static str {
115        use GelatoEmailReportErrorCode::*;
116        match self {
117            EmailUnverifiedOther => "email_unverified_other",
118            EmailVerificationDeclined => "email_verification_declined",
119        }
120    }
121}
122
123impl std::str::FromStr for GelatoEmailReportErrorCode {
124    type Err = stripe_types::StripeParseError;
125    fn from_str(s: &str) -> Result<Self, Self::Err> {
126        use GelatoEmailReportErrorCode::*;
127        match s {
128            "email_unverified_other" => Ok(EmailUnverifiedOther),
129            "email_verification_declined" => Ok(EmailVerificationDeclined),
130            _ => Err(stripe_types::StripeParseError),
131        }
132    }
133}
134impl std::fmt::Display for GelatoEmailReportErrorCode {
135    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
136        f.write_str(self.as_str())
137    }
138}
139
140impl std::fmt::Debug for GelatoEmailReportErrorCode {
141    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
142        f.write_str(self.as_str())
143    }
144}
145#[cfg(feature = "serialize")]
146impl serde::Serialize for GelatoEmailReportErrorCode {
147    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
148    where
149        S: serde::Serializer,
150    {
151        serializer.serialize_str(self.as_str())
152    }
153}
154impl miniserde::Deserialize for GelatoEmailReportErrorCode {
155    fn begin(out: &mut Option<Self>) -> &mut dyn miniserde::de::Visitor {
156        crate::Place::new(out)
157    }
158}
159
160impl miniserde::de::Visitor for crate::Place<GelatoEmailReportErrorCode> {
161    fn string(&mut self, s: &str) -> miniserde::Result<()> {
162        use std::str::FromStr;
163        self.out = Some(GelatoEmailReportErrorCode::from_str(s).map_err(|_| miniserde::Error)?);
164        Ok(())
165    }
166}
167
168stripe_types::impl_from_val_with_from_str!(GelatoEmailReportErrorCode);
169#[cfg(feature = "deserialize")]
170impl<'de> serde::Deserialize<'de> for GelatoEmailReportErrorCode {
171    fn deserialize<D: serde::Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
172        use std::str::FromStr;
173        let s: std::borrow::Cow<'de, str> = serde::Deserialize::deserialize(deserializer)?;
174        Self::from_str(&s)
175            .map_err(|_| serde::de::Error::custom("Unknown value for GelatoEmailReportErrorCode"))
176    }
177}