pub struct IoArgoprojEventsV1alpha1SensorSpec {
pub dependencies: Vec<IoArgoprojEventsV1alpha1EventDependency>,
pub error_on_failed_round: Option<bool>,
pub event_bus_name: Option<String>,
pub replicas: Option<i64>,
pub template: Option<IoArgoprojEventsV1alpha1Template>,
pub triggers: Vec<IoArgoprojEventsV1alpha1Trigger>,
}Fields§
§dependencies: Vec<IoArgoprojEventsV1alpha1EventDependency>Dependencies is a list of the events that this sensor is dependent on.
error_on_failed_round: Option<bool>ErrorOnFailedRound if set to true, marks sensor state as error if the previous trigger round fails.
Once sensor state is set to error, no further triggers will be processed.
event_bus_name: Option<String>§replicas: Option<i64>§template: Option<IoArgoprojEventsV1alpha1Template>§triggers: Vec<IoArgoprojEventsV1alpha1Trigger>Triggers is a list of the things that this sensor evokes. These are the outputs from this sensor.
Trait Implementations§
Source§impl Clone for IoArgoprojEventsV1alpha1SensorSpec
impl Clone for IoArgoprojEventsV1alpha1SensorSpec
Source§fn clone(&self) -> IoArgoprojEventsV1alpha1SensorSpec
fn clone(&self) -> IoArgoprojEventsV1alpha1SensorSpec
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for IoArgoprojEventsV1alpha1SensorSpec
impl<'de> Deserialize<'de> for IoArgoprojEventsV1alpha1SensorSpec
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&IoArgoprojEventsV1alpha1SensorSpec> for IoArgoprojEventsV1alpha1SensorSpec
impl From<&IoArgoprojEventsV1alpha1SensorSpec> for IoArgoprojEventsV1alpha1SensorSpec
Source§fn from(value: &IoArgoprojEventsV1alpha1SensorSpec) -> Self
fn from(value: &IoArgoprojEventsV1alpha1SensorSpec) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IoArgoprojEventsV1alpha1SensorSpec
impl RefUnwindSafe for IoArgoprojEventsV1alpha1SensorSpec
impl Send for IoArgoprojEventsV1alpha1SensorSpec
impl Sync for IoArgoprojEventsV1alpha1SensorSpec
impl Unpin for IoArgoprojEventsV1alpha1SensorSpec
impl UnwindSafe for IoArgoprojEventsV1alpha1SensorSpec
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