Struct slack_api::reminders::AddRequest [] [src]

pub struct AddRequest<'a> {
    pub text: &'a str,
    pub time: u32,
    pub user: Option<&'a str>,
}

Fields

The content of the reminder

When this reminder should happen: the Unix timestamp (up to five years from now), the number of seconds until the reminder (if within 24 hours), or a natural language description (Ex. "in 15 minutes," or "every Thursday")

The user who will receive the reminder. If no user is specified, the reminder will go to user who created it.

Trait Implementations

impl<'a> Clone for AddRequest<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> Default for AddRequest<'a>
[src]

Returns the "default value" for a type. Read more

impl<'a> Debug for AddRequest<'a>
[src]

Formats the value using the given formatter.