pub struct EmailAddressValidation {
pub client: Client,
}Fields§
§client: ClientImplementations§
Source§impl EmailAddressValidation
impl EmailAddressValidation
Sourcepub async fn post_validations_email(
&self,
body: &PostValidationsEmailRequest,
) -> Result<Response<PostValidationsEmailResponse>, ClientError>
pub async fn post_validations_email( &self, body: &PostValidationsEmailRequest, ) -> Result<Response<PostValidationsEmailResponse>, ClientError>
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 Freeze for EmailAddressValidation
impl !RefUnwindSafe for EmailAddressValidation
impl Send for EmailAddressValidation
impl Sync for EmailAddressValidation
impl Unpin for EmailAddressValidation
impl !UnwindSafe for EmailAddressValidation
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