io-gmail 0.2.2

Google Gmail REST API client library for Rust
Documentation
//! Patch a Gmail send-as alias (`users.settings.sendAs.patch`).
//!
//! <https://developers.google.com/gmail/api/reference/rest/v1/users.settings.sendAs/patch>

use alloc::format;

use io_http::rfc6750::bearer::HttpAuthBearer;
use log::{debug, trace};
use url::Url;

use crate::{
    coroutine::*,
    gmail_try,
    v1::{
        rest::settings::send_as::GmailSendAs,
        send::{GMAIL_API_BASE, GmailSend, GmailSendError, GmailSendOutput},
    },
};

/// I/O-free coroutine patching a send-as alias of a Gmail account
/// (`users.settings.sendAs.patch`).
pub struct GmailSendAsPatch {
    send: GmailSend<GmailSendAs>,
}

impl GmailSendAsPatch {
    /// Builds the `users.settings.sendAs.patch` request for the given alias.
    pub fn new(
        auth: &HttpAuthBearer,
        user_id: &str,
        send_as_email: &str,
        send_as: &GmailSendAs,
    ) -> Result<Self, GmailSendError> {
        debug!("prepare gmail send-as alias patch");
        trace!("send_as: {send_as:?}");

        let url = Url::parse(GMAIL_API_BASE)?
            .join(&format!("users/{user_id}/settings/sendAs/{send_as_email}"))?;
        let send = GmailSend::patch_json(auth, url, send_as)?;

        Ok(Self { send })
    }
}

impl GmailCoroutine for GmailSendAsPatch {
    type Yield = GmailYield;
    type Return = Result<GmailSendOutput<GmailSendAs>, GmailSendError>;

    fn resume(&mut self, arg: Option<&[u8]>) -> GmailCoroutineState<Self::Yield, Self::Return> {
        let out = gmail_try!(&mut self.send, arg);
        debug!("send-as alias patched");
        trace!("out: {out:?}");
        GmailCoroutineState::Complete(Ok(out))
    }
}