pub struct EventEnrollmentTransition {
pub enrollment_oid: ObjectIdentifier,
pub monitored_oid: ObjectIdentifier,
pub change: EventStateChange,
pub event_type: EventType,
}Expand description
A state transition detected during event enrollment evaluation.
Fields§
§enrollment_oid: ObjectIdentifierThe EventEnrollment object that detected the transition.
monitored_oid: ObjectIdentifierThe monitored object whose property triggered the transition.
change: EventStateChangeThe detected state change.
event_type: EventTypeThe event type that was evaluated.
Trait Implementations§
Source§impl Clone for EventEnrollmentTransition
impl Clone for EventEnrollmentTransition
Source§fn clone(&self) -> EventEnrollmentTransition
fn clone(&self) -> EventEnrollmentTransition
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 EventEnrollmentTransition
impl Debug for EventEnrollmentTransition
impl StructuralPartialEq for EventEnrollmentTransition
Auto Trait Implementations§
impl Freeze for EventEnrollmentTransition
impl RefUnwindSafe for EventEnrollmentTransition
impl Send for EventEnrollmentTransition
impl Sync for EventEnrollmentTransition
impl Unpin for EventEnrollmentTransition
impl UnsafeUnpin for EventEnrollmentTransition
impl UnwindSafe for EventEnrollmentTransition
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