Enum warmy::key::DepKey[][src]

pub enum DepKey {
    Path(PathBuf),
    Logical(String),
}

A dependency key, used to express dependency.

Variants

A key to a resource living on the filesystem – akin to FSKey.

A key to a resource living in memory or computed on the fly – akin to LogicalKey.

Trait Implementations

impl Clone for DepKey
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DepKey
[src]

Formats the value using the given formatter. Read more

impl Eq for DepKey
[src]

impl Hash for DepKey
[src]

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

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

impl PartialEq for DepKey
[src]

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

This method tests for !=.

impl From<FSKey> for DepKey
[src]

Performs the conversion.

impl From<LogicalKey> for DepKey
[src]

Performs the conversion.

impl Key for DepKey
[src]

Prepare a key. Read more

Auto Trait Implementations

impl Send for DepKey

impl Sync for DepKey