pub trait MailboxExt {
// Required method
fn connect_to_mailbox(
&self,
instance: &str,
) -> Result<Client<Channel>, DriverError>;
}Expand description
Extension trait for DriverContext to simplify connecting to mailbox resources.
Required Methods§
Sourcefn connect_to_mailbox(
&self,
instance: &str,
) -> Result<Client<Channel>, DriverError>
fn connect_to_mailbox( &self, instance: &str, ) -> Result<Client<Channel>, DriverError>
Connects to a mailbox resource with the given instance name.