pub enum EventTypes {
ObjectCreated,
ObjectUpdated,
ObjectDeleted,
JobStarted,
JobCompleted,
JobFailed,
JobErrored,
BranchProvisioned,
BranchDeprovisioned,
BranchSynced,
BranchMerged,
BranchReverted,
}Expand description
The types of event which will trigger this rule.
Variants§
ObjectCreated
ObjectUpdated
ObjectDeleted
JobStarted
JobCompleted
JobFailed
JobErrored
BranchProvisioned
BranchDeprovisioned
BranchSynced
BranchMerged
BranchReverted
Trait Implementations§
Source§impl Clone for EventTypes
impl Clone for EventTypes
Source§fn clone(&self) -> EventTypes
fn clone(&self) -> EventTypes
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 Debug for EventTypes
impl Debug for EventTypes
Source§impl Default for EventTypes
impl Default for EventTypes
Source§fn default() -> EventTypes
fn default() -> EventTypes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventTypes
impl<'de> Deserialize<'de> for EventTypes
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 Hash for EventTypes
impl Hash for EventTypes
Source§impl Ord for EventTypes
impl Ord for EventTypes
Source§fn cmp(&self, other: &EventTypes) -> Ordering
fn cmp(&self, other: &EventTypes) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EventTypes
impl PartialEq for EventTypes
Source§impl PartialOrd for EventTypes
impl PartialOrd for EventTypes
Source§impl Serialize for EventTypes
impl Serialize for EventTypes
impl Copy for EventTypes
impl Eq for EventTypes
impl StructuralPartialEq for EventTypes
Auto Trait Implementations§
impl Freeze for EventTypes
impl RefUnwindSafe for EventTypes
impl Send for EventTypes
impl Sync for EventTypes
impl Unpin for EventTypes
impl UnwindSafe for EventTypes
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