Enum dynalock::error::DynaErrorKind [] [src]

pub enum DynaErrorKind {
    UnhandledError,
    ProviderError,
    LockAlreadyAcquired,
}

An enum of errors to represent the possible kinds of DynaError.

Variants

Unhandled error from another crate or the standard library.

Provider error from another crate.

Lock has been acquired by another processor.

Methods

impl DynaErrorKind
[src]

[src]

Return a string description of the error.

Trait Implementations

impl Debug for DynaErrorKind
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for DynaErrorKind
[src]

impl Clone for DynaErrorKind
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for DynaErrorKind
[src]

impl PartialEq for DynaErrorKind
[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 Display for DynaErrorKind
[src]

[src]

Formats the value using the given formatter. Read more

impl From<DynaErrorKind> for DynaError
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for DynaErrorKind

impl Sync for DynaErrorKind