pub struct ResourceEvent {
pub tenant_id: TenantId,
pub fhir_version: FhirVersion,
pub resource_type: String,
pub resource_id: String,
pub version_id: String,
pub event_type: ResourceEventType,
pub resource: Option<Value>,
pub previous_resource: Option<Value>,
pub timestamp: DateTime<Utc>,
}Expand description
An event emitted after a resource write operation (create, update, or delete).
This is the input to the subscription engine’s evaluation pipeline.
Fields§
§tenant_id: TenantIdThe tenant that owns the resource.
fhir_version: FhirVersionThe FHIR version of the resource.
resource_type: StringThe resource type (e.g., “Patient”, “Observation”).
resource_id: StringThe resource ID.
version_id: StringThe version ID after the write operation.
event_type: ResourceEventTypeThe type of interaction that produced this event.
resource: Option<Value>The resource content after the interaction (None for delete).
previous_resource: Option<Value>The resource content before the interaction (None for create).
timestamp: DateTime<Utc>When the event occurred.
Trait Implementations§
Source§impl Clone for ResourceEvent
impl Clone for ResourceEvent
Source§fn clone(&self) -> ResourceEvent
fn clone(&self) -> ResourceEvent
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 moreAuto Trait Implementations§
impl Freeze for ResourceEvent
impl RefUnwindSafe for ResourceEvent
impl Send for ResourceEvent
impl Sync for ResourceEvent
impl Unpin for ResourceEvent
impl UnsafeUnpin for ResourceEvent
impl UnwindSafe for ResourceEvent
Blanket Implementations§
impl<T> Allocation for T
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more