Enum kpdb::Icon [] [src]

pub enum Icon {
    Key,
    World,
    Warning,
    Server,
    MarkedDirectory,
    UserCommunication,
    Parts,
    Notepad,
    WorldSocket,
    Identity,
    PaperReady,
    Digicam,
    IRCommunication,
    MultipleKeys,
    Energy,
    Scanner,
    WorldStar,
    CDRom,
    Monitor,
    Email,
    Configuration,
    ClipboardReady,
    PaperNew,
    Screen,
    EnergyCareful,
    Inbox,
    Disk,
    Drive,
    QuickTime,
    EncryptedTerminal,
    Console,
    Printer,
    Icons,
    Run,
    Settings,
    WorldComputer,
    Archive,
    Banking,
    Smb,
    Clock,
    EmailSearch,
    PaperFlag,
    Memory,
    RecycleBin,
    Note,
    Expired,
    Info,
    Package,
    Folder,
    FolderOpen,
    FolderPackage,
    LockOpen,
    PaperLocked,
    Checked,
    Pen,
    Thumbnail,
    Book,
    Listing,
    UserKey,
    Tool,
    Home,
    Star,
    Tux,
    Feather,
    Apple,
    Wikipedia,
    Money,
    Certificate,
    Phone,
}

The icon of an entry or group.

Variants

The key icon.

The world icon.

The warning icon.

The server icon.

The marked directory icon.

The user communication icon.

The parts icon.

The notepad icon.

The world with socket icon.

The identity icon.

The paper ready icon.

The digicam icon.

The infrared communication icon.

The multiple keys icon.

The energy icon.

The scanner icon.

The world with star icon.

The CD-ROM icon.

The monitor icon.

The email icon.

The configuration icon.

The clipboard ready icon.

The new paper icon.

The screen icon.

The energy careful icon.

The inbox icon.

The disk icon.

The drive icon.

The QuickTime icon.

The encrypted terminal icon.

The console icon.

The printer icon.

The icons icon.

The run icon.

The settings icon.

The world with a computer icon.

The archive icon.

The banking icon.

The SMB icon (Windows networking).

The clock icon.

The email search icon.

The paper with flag icon.

The memory icon.

The recycle bin icon.

The note icon.

The expired icon.

The info icon.

The package icon.

The folder icon.

The open folder icon.

The packaged folder icon.

The open lock icon.

The paper with lock icon.

The checked icon.

The pen icon.

The thumbnail icon.

The book icon.

The listing icon.

The user's key icon.

The tool icon.

The home icon.

The star icon.

The Tux logo.

The feather icon.

The Apple logo.

The Wikipedia logo.

The money icon.

The certificate icon.

The phone icon.

Methods

impl Icon
[src]

[src]

Attempts to convert an identifier to an icon.

Examples

use kpdb::Icon;

let icon = try!(Icon::from_i32(0));

[src]

Gets the icon's identifier.

Examples

use kpdb::Icon;

let icon = Icon::Key;
let icon_id = icon.to_i32();

Trait Implementations

impl Clone for Icon
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Icon
[src]

impl Debug for Icon
[src]

[src]

Formats the value using the given formatter.

impl Eq for Icon
[src]

impl Hash for Icon
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for Icon
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl PartialOrd for Icon
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for Icon
[src]

[src]

This method returns an Ordering between self and other. Read more

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more