Enum xio_jobset_compilation::ErrorKind[][src]

pub enum ErrorKind {
    ParameterAlreadyDescribed {
        name: String,
        original_layer: String,
        offending_layer: String,
    },
    ParameterNotYetDescribed {
        name: String,
        layer: String,
    },
    ParameterOverrideEnforceNotRespected {
        name: String,
        layer: String,
    },
    ParameterOverrideForbidNotSatisfied {
        name: String,
        layer: String,
    },
    ParameterOverrideNotAllowed {
        name: String,
        layer: String,
    },
    ParameterTypeMismatch {
        name: String,
        defined_type: DataType,
        defined_layer: String,
        value: DataValueDescriptive,
        value_layer: String,
    },
    ParameterWithFixedStorageAndNoValue {
        name: String,
    },
    MappedParameterOutOfMaskRange {
        name: String,
        index: u16,
        max_index: u16,
    },
    MappedParameterNotFound {
        name: String,
    },
    ParameterNotFound {
        name: String,
    },
    ParameterNotMappedInHardwareAssignment {
        name: String,
        hardware_board: String,
    },
    CapabilityNotFound {
        name: String,
        parameter_name: String,
        hardware_board: String,
    },
    ModuleDescriptionNotFound {
        name: String,
        parameter_name: String,
        capability_name: String,
        hardware_board: String,
    },
    ModuleChannelNotFound {
        name: String,
        module_name: String,
        parameter_name: String,
    },
    ChannelDataTypeMismatch {
        index: u16,
        name: String,
        module_name: String,
        required_datatype: DataType,
        found_datatype: DataType,
        parameter_name: String,
    },
    InvalidDataType {
        name: String,
    },
    InstructionNotFound {
        name: String,
        location: CodeLocation,
    },
    FoundConditionInCommands {
        location: CodeLocation,
        command_type: String,
    },
    CommandWithoutTimeExtentButConditions {
        command_type: String,
        location: CodeLocation,
    },
    CommandWithTimeExtentButNoConditions {
        command_type: String,
        location: CodeLocation,
    },
    InvalidInstructionCategory {
        location: CodeLocation,
        command_type: String,
    },
    ParametersInGroupAreOfDifferentTypes {
        location: CodeLocation,
        parameters: BTreeSet<String>,
        group: String,
    },
    WrongParameters {
        location: CodeLocation,
        found: BTreeSet<String>,
        required: BTreeSet<String>,
    },
    ParameterStorageDoesNotFit {
        location: CodeLocation,
        name: String,
        required_storage: StorageTypeWithMixed,
        found_storage: StorageType,
    },
    ProgrammerError {
        msg: String,
    },
    XioBaseDatatypes,
}

Variants

Fields of ParameterAlreadyDescribed

Fields of ParameterNotYetDescribed

Fields of ParameterOverrideEnforceNotRespected

Fields of ParameterOverrideForbidNotSatisfied

Fields of ParameterOverrideNotAllowed

Fields of ParameterTypeMismatch

Fields of ParameterWithFixedStorageAndNoValue

Fields of MappedParameterOutOfMaskRange

Fields of MappedParameterNotFound

Fields of ParameterNotFound

Fields of ParameterNotMappedInHardwareAssignment

Fields of CapabilityNotFound

Fields of ModuleDescriptionNotFound

Fields of ModuleChannelNotFound

Fields of ChannelDataTypeMismatch

Fields of InvalidDataType

Fields of InstructionNotFound

Fields of FoundConditionInCommands

Fields of CommandWithoutTimeExtentButConditions

Fields of CommandWithTimeExtentButNoConditions

Fields of InvalidInstructionCategory

Fields of ParametersInGroupAreOfDifferentTypes

Fields of WrongParameters

Fields of ParameterStorageDoesNotFit

Fields of ProgrammerError

Trait Implementations

impl From<ErrorKind> for Error
[src]

Performs the conversion.

impl Clone for ErrorKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for ErrorKind
[src]

impl PartialEq for ErrorKind
[src]

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

This method tests for !=.

impl Debug for ErrorKind
[src]

Formats the value using the given formatter. Read more

impl Fail for ErrorKind
[src]

Returns a reference to the underlying cause of this failure, if it is an error that wraps other errors. Read more

Returns a reference to the Backtrace carried by this failure, if it carries one. Read more

Provides context for this failure. Read more

Wraps this failure in a compatibility wrapper that implements std::error::Error. Read more

Returns a iterator over the causes of this Fail with itself as the first item and the root_cause as the final item. Read more

Returns the "root cause" of this Fail - the last value in the cause chain which does not return an underlying cause. Read more

impl Display for ErrorKind
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ErrorKind

impl Sync for ErrorKind