pub struct EmailAddressValidation {
pub client: Client,
}
Fields
client: Client
Implementations
sourceimpl EmailAddressValidation
impl EmailAddressValidation
sourcepub async fn post_validations_email(
&self,
body: &PostValidationsEmailRequest
) -> Result<PostValidationsEmailResponse>
pub async fn post_validations_email(
&self,
body: &PostValidationsEmailRequest
) -> Result<PostValidationsEmailResponse>
Validate an email.
This function performs a POST
to the /validations/email
endpoint.
This endpoint allows you to validate an email address.
Auto Trait Implementations
impl !RefUnwindSafe for EmailAddressValidation
impl Send for EmailAddressValidation
impl Sync for EmailAddressValidation
impl Unpin for EmailAddressValidation
impl !UnwindSafe for EmailAddressValidation
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more