pub struct SesClient<'a> { /* private fields */ }Implementations§
Source§impl SesClient<'_>
impl SesClient<'_>
Sourcepub async fn get_emails(&self) -> Result<SesEmailsResponse, Error>
pub async fn get_emails(&self) -> Result<SesEmailsResponse, Error>
List all sent emails.
Sourcepub async fn simulate_inbound(
&self,
req: &InboundEmailRequest,
) -> Result<InboundEmailResponse, Error>
pub async fn simulate_inbound( &self, req: &InboundEmailRequest, ) -> Result<InboundEmailResponse, Error>
Simulate an inbound email (SES receipt rules).
Auto Trait Implementations§
impl<'a> Freeze for SesClient<'a>
impl<'a> !RefUnwindSafe for SesClient<'a>
impl<'a> Send for SesClient<'a>
impl<'a> Sync for SesClient<'a>
impl<'a> Unpin for SesClient<'a>
impl<'a> UnsafeUnpin for SesClient<'a>
impl<'a> !UnwindSafe for SesClient<'a>
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