pub struct VerifiedSenderResponseSchema {Show 14 fields
pub address: String,
pub address_2: String,
pub city: String,
pub country: String,
pub from_email: String,
pub from_name: String,
pub id: i64,
pub locked: bool,
pub nickname: String,
pub reply_to: String,
pub reply_to_name: String,
pub state: String,
pub verified: bool,
pub zip: String,
}
Fields§
§address: String
§address_2: String
§city: String
§country: String
§from_email: String
§from_name: String
§id: i64
§locked: bool
§nickname: String
§reply_to: String
§reply_to_name: String
§state: String
§verified: bool
§zip: String
Trait Implementations§
Source§impl Clone for VerifiedSenderResponseSchema
impl Clone for VerifiedSenderResponseSchema
Source§fn clone(&self) -> VerifiedSenderResponseSchema
fn clone(&self) -> VerifiedSenderResponseSchema
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for VerifiedSenderResponseSchema
impl Debug for VerifiedSenderResponseSchema
Source§impl<'de> Deserialize<'de> for VerifiedSenderResponseSchema
impl<'de> Deserialize<'de> for VerifiedSenderResponseSchema
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
Source§impl JsonSchema for VerifiedSenderResponseSchema
impl JsonSchema for VerifiedSenderResponseSchema
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
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 is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreSource§impl PartialEq for VerifiedSenderResponseSchema
impl PartialEq for VerifiedSenderResponseSchema
Source§fn eq(&self, other: &VerifiedSenderResponseSchema) -> bool
fn eq(&self, other: &VerifiedSenderResponseSchema) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for VerifiedSenderResponseSchema
Auto Trait Implementations§
impl Freeze for VerifiedSenderResponseSchema
impl RefUnwindSafe for VerifiedSenderResponseSchema
impl Send for VerifiedSenderResponseSchema
impl Sync for VerifiedSenderResponseSchema
impl Unpin for VerifiedSenderResponseSchema
impl UnwindSafe for VerifiedSenderResponseSchema
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