Enum gravatar::Default [] [src]

pub enum Default {
    Url(String),
    Http404,
    Blank,
    MysteryMan,
    Identicon,
    MonsterId,
    Wavatar,
    Retro,
}

The default image to display if the user's email does not have a Gravatar.

See http://en.gravatar.com/site/implement/images/#default-image.

Variants

The URL of an image file to display as the default.

Instead of loading an image, the Gravatar URL will return an HTTP 404 (File Not Found) response if the email is not found.

A transparent PNG image.

A simple, cartoon-style silhouetted outline of a person that does not vary by email hash.

A geometric pattern based on the email hash.

A "monster" with different colors, faces, etc. that are generated by the email hash.

A face with different features and backgrounds, generated by the email hash.

An 8-bit arcade-style pixelated face that is generated by the email hash.

Trait Implementations

impl Clone for Default
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Default
[src]

Formats the value using the given formatter.