Enum lase::LaseError [] [src]

pub enum LaseError {
    EtherdreamError {
        cause: EtherdreamError,
    },
    UnsupportedByDac,
}

Library errors. This can wrap the underlying DAC hardware/library errors.

Variants

Wraps Etherdream errors.

Fields of EtherdreamError

Root cause of the error.

An operation unsupported by the DAC hardware was attempted.

Trait Implementations

impl Debug for LaseError
[src]

[src]

Formats the value using the given formatter.

impl Error for LaseError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more

impl Display for LaseError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<EtherdreamError> for LaseError
[src]

[src]

Performs the conversion.