#[repr(C)]pub struct dpiSubscrMessageTable {
pub operation: dpiOpCode,
pub name: *const c_char,
pub nameLength: u32,
pub rows: *mut dpiSubscrMessageRow,
pub numRows: u32,
}Expand description
This structure is used for passing information on the tables that were changed and resulted in the notification message of which this structure is a part.
Fields§
§operation: dpiOpCodeSpecifies the operations that took place on the modified table. It will
be one or more of the values from the enumeration
dpiOpCode, OR’ed together.
name: *const c_charSpecifies the name of the table that was changed, in the encoding used for CHAR data.
nameLength: u32Specifies the length of the [dpiSubscrMessageRow.name] member, in
bytes.
rows: *mut dpiSubscrMessageRowSpecifies a pointer to an array of
dpiSubscrMessageRow structures representing the
list of rows that were modified by the event which generated this
notification.
numRows: u32Specifies the number of structures available in the
[dpiSubscrMessageTable.rows] member.
Trait Implementations§
Source§impl Clone for dpiSubscrMessageTable
impl Clone for dpiSubscrMessageTable
Source§fn clone(&self) -> dpiSubscrMessageTable
fn clone(&self) -> dpiSubscrMessageTable
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 dpiSubscrMessageTable
impl Debug for dpiSubscrMessageTable
Source§impl Default for dpiSubscrMessageTable
impl Default for dpiSubscrMessageTable
impl Copy for dpiSubscrMessageTable
Auto Trait Implementations§
impl Freeze for dpiSubscrMessageTable
impl RefUnwindSafe for dpiSubscrMessageTable
impl !Send for dpiSubscrMessageTable
impl !Sync for dpiSubscrMessageTable
impl Unpin for dpiSubscrMessageTable
impl UnwindSafe for dpiSubscrMessageTable
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