pub enum GmailVerificationStatus {
VerificationStatusUnspecified,
Accepted,
Pending,
Rejected,
Expired,
}Expand description
Verification state of an email address owned by a Gmail account.
Variants§
VerificationStatusUnspecified
No verification status specified.
Accepted
The address is verified and usable.
Pending
The verification request is awaiting a response.
Rejected
The verification request was rejected.
Expired
The verification request expired without a response.
Trait Implementations§
Source§impl Clone for GmailVerificationStatus
impl Clone for GmailVerificationStatus
Source§fn clone(&self) -> GmailVerificationStatus
fn clone(&self) -> GmailVerificationStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for GmailVerificationStatus
Source§impl Debug for GmailVerificationStatus
impl Debug for GmailVerificationStatus
Source§impl<'de> Deserialize<'de> for GmailVerificationStatus
impl<'de> Deserialize<'de> for GmailVerificationStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for GmailVerificationStatus
Source§impl JsonSchema for GmailVerificationStatus
impl JsonSchema for GmailVerificationStatus
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for GmailVerificationStatus
impl PartialEq for GmailVerificationStatus
Source§impl Serialize for GmailVerificationStatus
impl Serialize for GmailVerificationStatus
impl StructuralPartialEq for GmailVerificationStatus
Auto Trait Implementations§
impl Freeze for GmailVerificationStatus
impl RefUnwindSafe for GmailVerificationStatus
impl Send for GmailVerificationStatus
impl Sync for GmailVerificationStatus
impl Unpin for GmailVerificationStatus
impl UnsafeUnpin for GmailVerificationStatus
impl UnwindSafe for GmailVerificationStatus
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more