Enum egg_mode::user::UserID [] [src]

pub enum UserID<'a> {
    ID(u64),
    ScreenName(&'a str),
}

Convenience enum to generalize between referring to an account by numeric ID or by screen name.

Many API calls ask for a user either by either screen name (e.g. rustlang) or by a numeric ID assigned to the account (e.g. 165262228). In egg-mode, these calls are abstracted around this enum, and can take any type that converts into it. This enum has From implementations for the following types:

  • u64
  • &u64 (convenient when used with iterators)
  • &str
  • &&str (convenient when used with iterators)
  • &String (to counteract the fact that deref coercion doesn't work with generics)
  • &UserID (convenient when used with iterators)

This way, when a function in egg-mode has a paremeter of type T: Into<UserID<'a>>, you can call it with any of these types, and it will be converted automatically. egg-mode will then use the proper parameter when performing the call to Twitter.

Variants

Referring via the account's numeric ID.

Referring via the account's screen name.

Trait Implementations

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

[src]

Formats the value using the given formatter.

impl<'a> Copy for UserID<'a>
[src]

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> From<u64> for UserID<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<&'a u64> for UserID<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<&'a str> for UserID<'a>
[src]

[src]

Performs the conversion.

impl<'a, 'b> From<&'b &'a str> for UserID<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<&'a String> for UserID<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<&'a UserID<'a>> for UserID<'a>
[src]

[src]

Performs the conversion.