pub enum LifecycleEvent {
ProjectCreated {
project_id: String,
seq: u64,
},
ProjectDropped {
project_id: String,
seq: u64,
},
ScopeCreated {
project_id: String,
scope_id: String,
seq: u64,
},
ScopeDropped {
project_id: String,
scope_id: String,
seq: u64,
},
TableCreated {
project_id: String,
scope_id: String,
table_name: String,
seq: u64,
},
TableDropped {
project_id: String,
scope_id: String,
table_name: String,
seq: u64,
},
TableAltered {
project_id: String,
scope_id: String,
table_name: String,
seq: u64,
},
AccumulatorDeltaAppended {
project_id: String,
scope_id: String,
accumulator_name: String,
delta: i64,
dedupe_key: String,
order_key: u64,
release_exposure_id: Option<String>,
seq: u64,
},
AccumulatorExposureReserved {
project_id: String,
scope_id: String,
accumulator_name: String,
amount: i64,
exposure_id: String,
seq: u64,
},
AppEventEmitted {
project_id: String,
scope_id: String,
topic: String,
event_key: String,
payload_json: String,
seq: u64,
},
}Variants§
ProjectCreated
ProjectDropped
ScopeCreated
ScopeDropped
TableCreated
TableDropped
TableAltered
AccumulatorDeltaAppended
Fields
AccumulatorExposureReserved
Fields
AppEventEmitted
Trait Implementations§
Source§impl Clone for LifecycleEvent
impl Clone for LifecycleEvent
Source§fn clone(&self) -> LifecycleEvent
fn clone(&self) -> LifecycleEvent
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 LifecycleEvent
impl Debug for LifecycleEvent
Source§impl<'de> Deserialize<'de> for LifecycleEvent
impl<'de> Deserialize<'de> for LifecycleEvent
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 PartialEq for LifecycleEvent
impl PartialEq for LifecycleEvent
Source§impl Serialize for LifecycleEvent
impl Serialize for LifecycleEvent
impl Eq for LifecycleEvent
impl StructuralPartialEq for LifecycleEvent
Auto Trait Implementations§
impl Freeze for LifecycleEvent
impl RefUnwindSafe for LifecycleEvent
impl Send for LifecycleEvent
impl Sync for LifecycleEvent
impl Unpin for LifecycleEvent
impl UnsafeUnpin for LifecycleEvent
impl UnwindSafe for LifecycleEvent
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