pub struct TriggerSubscriptionRecord {Show 16 fields
pub subscription_id: String,
pub session_id: String,
pub handle: String,
pub name: Option<String>,
pub source_type: String,
pub source_key: String,
pub source: Value,
pub event_ty: TypeExpr,
pub module_ref: ModuleRef,
pub required_surface_ref: RequiredSurfaceRef,
pub process_ref: ProcessRef,
pub process_name: String,
pub input_template: TriggerInputTemplate,
pub enabled: bool,
pub created_at_ms: u64,
pub updated_at_ms: u64,
}Fields§
§subscription_id: String§session_id: String§handle: String§name: Option<String>§source_type: String§source_key: String§source: Value§event_ty: TypeExpr§module_ref: ModuleRef§required_surface_ref: RequiredSurfaceRef§process_ref: ProcessRef§process_name: String§input_template: TriggerInputTemplate§enabled: bool§created_at_ms: u64§updated_at_ms: u64Trait Implementations§
Source§impl Clone for TriggerSubscriptionRecord
impl Clone for TriggerSubscriptionRecord
Source§fn clone(&self) -> TriggerSubscriptionRecord
fn clone(&self) -> TriggerSubscriptionRecord
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 TriggerSubscriptionRecord
impl Debug for TriggerSubscriptionRecord
Source§impl<'de> Deserialize<'de> for TriggerSubscriptionRecord
impl<'de> Deserialize<'de> for TriggerSubscriptionRecord
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<&TriggerSubscriptionRecord> for TriggerRegistration
impl From<&TriggerSubscriptionRecord> for TriggerRegistration
Source§fn from(route: &TriggerSubscriptionRecord) -> Self
fn from(route: &TriggerSubscriptionRecord) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TriggerSubscriptionRecord
impl PartialEq for TriggerSubscriptionRecord
Source§fn eq(&self, other: &TriggerSubscriptionRecord) -> bool
fn eq(&self, other: &TriggerSubscriptionRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TriggerSubscriptionRecord
Auto Trait Implementations§
impl Freeze for TriggerSubscriptionRecord
impl RefUnwindSafe for TriggerSubscriptionRecord
impl Send for TriggerSubscriptionRecord
impl Sync for TriggerSubscriptionRecord
impl Unpin for TriggerSubscriptionRecord
impl UnsafeUnpin for TriggerSubscriptionRecord
impl UnwindSafe for TriggerSubscriptionRecord
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