pub enum TriggerCompatibilityError {
UnknownSourceType {
source_type: String,
},
Source(String),
ModuleRefMismatch {
process_name: String,
target_module_ref: String,
artifact_module_ref: String,
},
HostRequirementsMismatch {
process_name: String,
target_host_requirements: String,
artifact_host_requirements: String,
},
ProcessRefMismatch {
module_ref: String,
process_name: String,
process_ref: String,
},
MissingProcess {
module_ref: String,
process_name: String,
},
MissingInput {
process_name: String,
input: String,
},
UnknownInput {
process_name: String,
input: String,
},
MissingEventInput {
process_name: String,
},
EventMismatch {
event: String,
process_name: String,
input_name: String,
input: String,
},
FixedInputMismatch {
process_name: String,
input: String,
expected: String,
actual: String,
},
}Variants§
UnknownSourceType
Source(String)
ModuleRefMismatch
HostRequirementsMismatch
ProcessRefMismatch
MissingProcess
MissingInput
UnknownInput
MissingEventInput
EventMismatch
FixedInputMismatch
Trait Implementations§
Source§impl Clone for TriggerCompatibilityError
impl Clone for TriggerCompatibilityError
Source§fn clone(&self) -> TriggerCompatibilityError
fn clone(&self) -> TriggerCompatibilityError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TriggerCompatibilityError
impl Debug for TriggerCompatibilityError
Source§impl Display for TriggerCompatibilityError
impl Display for TriggerCompatibilityError
impl Eq for TriggerCompatibilityError
Source§impl Error for TriggerCompatibilityError
impl Error for TriggerCompatibilityError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for TriggerCompatibilityError
impl PartialEq for TriggerCompatibilityError
Source§fn eq(&self, other: &TriggerCompatibilityError) -> bool
fn eq(&self, other: &TriggerCompatibilityError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TriggerCompatibilityError
Auto Trait Implementations§
impl Freeze for TriggerCompatibilityError
impl RefUnwindSafe for TriggerCompatibilityError
impl Send for TriggerCompatibilityError
impl Sync for TriggerCompatibilityError
impl Unpin for TriggerCompatibilityError
impl UnsafeUnpin for TriggerCompatibilityError
impl UnwindSafe for TriggerCompatibilityError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string() Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString. Read more