Enum warmy::DepKey [] [src]

pub enum DepKey {
    Path(PathKey),
    Logical(LogicalKey),
}

A dependency key, which is either a PathKey or a LogicalKey.

Variants

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.

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

[src]

Performs the conversion.

impl From<LogicalKey> for DepKey
[src]

[src]

Performs the conversion.

impl<T> From<Key<T>> for DepKey where
    T: Load
[src]

[src]

Performs the conversion.