Enum mwa_hyperbeam::fee::error::InitFEEBeamError[][src]

pub enum InitFEEBeamError {
    MissingDipole,
    NoDipoles,
    NoFreqs,
    DipoleCountMismatch {
        expected: u8,
        got: u8,
    },
    Parse(String),
    MwaBeamFileVarError(VarError),
    Hdf5Error(Error),
}

Variants

MissingDipole
NoDipoles
NoFreqs
DipoleCountMismatch

Incorrect number of dipoles in the HDF5 file.

Fields of DipoleCountMismatch

expected: u8got: u8
Parse(String)

An error associated with parsing a string into another type.

MwaBeamFileVarError(VarError)

An error associated with the MWA_BEAM_FILE environment variable.

Hdf5Error(Error)

An error associated with the hdf5 crate.

Trait Implementations

impl Debug for InitFEEBeamError[src]

impl Display for InitFEEBeamError[src]

impl Error for InitFEEBeamError[src]

impl From<Error> for InitFEEBeamError[src]

impl From<VarError> for InitFEEBeamError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.