pub trait GmailCoroutine {
type Yield;
type Return;
// Required method
fn resume(
&mut self,
arg: Option<&[u8]>,
) -> GmailCoroutineState<Self::Yield, Self::Return>;
}Expand description
A resumable, I/O-free Gmail operation.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".