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]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DepKey
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for DepKey
[src]

impl Hash for DepKey
[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 DepKey
[src]

[src]

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

[src]

This method tests for !=.

impl From<FSKey> for DepKey
[src]

[src]

Performs the conversion.

impl From<LogicalKey> for DepKey
[src]

[src]

Performs the conversion.

impl Key for DepKey
[src]

[src]

Prepare a key. Read more

Auto Trait Implementations

impl Send for DepKey

impl Sync for DepKey