#[repr(C)]pub struct dpiSubscrMessageQuery {
pub id: u64,
pub operation: dpiOpCode,
pub tables: *mut dpiSubscrMessageTable,
pub numTables: u32,
}Expand description
This structure is used for passing information on query change notification
events and is part of the dpiSubscrMessage structure.
Fields§
§id: u64Specifies the id of the query that was registered as part of the subscription that generated this notification.
operation: dpiOpCodeSpecifies the operations that took place on the registered query. It will
be one or more of the values from the enumeration
dpiOpCode, OR’ed together.
tables: *mut dpiSubscrMessageTableSpecifies a pointer to an array of
dpiSubscrMessageTable structures representing
the list of tables that were modified by the event which generated this
notification.
numTables: u32Specifies the number of structures available in the
[dpiSubscrMessageQuery.tables] member.
Trait Implementations§
Source§impl Clone for dpiSubscrMessageQuery
impl Clone for dpiSubscrMessageQuery
Source§fn clone(&self) -> dpiSubscrMessageQuery
fn clone(&self) -> dpiSubscrMessageQuery
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 dpiSubscrMessageQuery
impl Debug for dpiSubscrMessageQuery
Source§impl Default for dpiSubscrMessageQuery
impl Default for dpiSubscrMessageQuery
impl Copy for dpiSubscrMessageQuery
Auto Trait Implementations§
impl Freeze for dpiSubscrMessageQuery
impl RefUnwindSafe for dpiSubscrMessageQuery
impl !Send for dpiSubscrMessageQuery
impl !Sync for dpiSubscrMessageQuery
impl Unpin for dpiSubscrMessageQuery
impl UnwindSafe for dpiSubscrMessageQuery
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