Enum alfred::ItemType [] [src]

pub enum ItemType {
    Default,
    File,
    FileSkipCheck,
}

Item types

Variants

Default

Default type for an item

File

Type representing a file

Alredy checks that the file exists on disk, and hides the result if it does not.

FileSkipCheck

Type representing a file, with filesystem checks skipped

Similar to File but skips the check to ensure the file exists.

Trait Implementations

impl Copy for ItemType
[src]

impl Clone for ItemType
[src]

fn clone(&self) -> ItemType

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Eq for ItemType
[src]

impl PartialEq for ItemType
[src]

fn eq(&self, __arg_0: &ItemType) -> bool

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.