This library has been designed to be ultra high level and simple (see the examples below). Performance has been taken in account but the host's slowness in a real bottleneck.
rust
extern crate gmailnator;
use gmailnator::mail::GmailnatorInbox;
...
let inbox = GmailnatorInbox::new().expect("Error occured when creating the inbox.");
rust
let address = inbox.get_address(); returns an &str
```rust let messages = inbox.get_messages().expect("Failed to retrieve messages.");
for message in messages {
let title = message.get_title();
let body = message.get_raw_content();
println!("Title : {}\nBody : {}", title, body);
} ```