Enum slack_api::reminders::AddError [] [src]

pub enum AddError<E: Error> {
    CannotParse,
    UserNotFound,
    CannotAddBot,
    CannotAddSlackbot,
    CannotAddOthers,
    CannotAddOthersRecurring,
    NotAuthed,
    InvalidAuth,
    AccountInactive,
    UserIsBot,
    InvalidArgName,
    InvalidArrayArg,
    InvalidCharset,
    InvalidFormData,
    InvalidPostType,
    MissingPostType,
    TeamAddedToOrg,
    RequestTimeout,
    MalformedResponse(Error),
    Unknown(String),
    Client(E),
}

Variants

The phrasing of the timing for this reminder is unclear. You must include a complete time description. Some examples that work: 1458678068, 20, in 5 minutes, tomorrow, at 3:30pm, on Tuesday, or next week.

That user can't be found.

Reminders can't be sent to bots.

Reminders can't be sent to Slackbot.

Guests can't set reminders for other team members.

Recurring reminders can't be set for other team members.

No authentication token provided.

Invalid authentication token.

Authentication token is for a deleted user or team.

This method cannot be called by a bot user.

The method was passed an argument whose name falls outside the bounds of common decency. This includes very long names and names with non-alphanumeric characters other than _. If you get this error, it is typically an indication that you have made a very malformed API call.

The method was passed a PHP-style array argument (e.g. with a name like foo[7]). These are never valid with the Slack API.

The method was called via a POST request, but the charset specified in the Content-Type header was invalid. Valid charset names are: utf-8 iso-8859-1.

The method was called via a POST request with Content-Type application/x-www-form-urlencoded or multipart/form-data, but the form data was either missing or syntactically invalid.

The method was called via a POST request, but the specified Content-Type was invalid. Valid types are: application/x-www-form-urlencoded multipart/form-data text/plain.

The method was called via a POST request and included a data payload, but the request did not include a Content-Type header.

The team associated with your request is currently undergoing migration to an Enterprise Organization. Web API and other platform operations will be intermittently unavailable until the transition is complete.

The method was called via a POST request, but the POST data was either missing or truncated.

The response was not parseable as the expected object

The response returned an error that was unknown to the library

The client had an error sending the request to Slack

Trait Implementations

impl<E: Debug + Error> Debug for AddError<E>
[src]

Formats the value using the given formatter.

impl<'a, E: Error> From<&'a str> for AddError<E>
[src]

Performs the conversion.

impl<E: Error> Display for AddError<E>
[src]

Formats the value using the given formatter.

impl<E: Error> Error for AddError<E>
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more