#[repr(C)]pub struct dpiSubscrMessageRow {
pub operation: dpiOpCode,
pub rowid: *const c_char,
pub rowidLength: u32,
}Expand description
This structure is used for passing information on the rows 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 registered query. It will
be one or more of the values from the enumeration
dpiOpCode, OR’ed together.
rowid: *const c_charSpecifies the rowid of the row that was changed, in the encoding used for CHAR data.
rowidLength: u32Specifies the length of the [dpiSubscrMessageRow.rowid] member, in
bytes.
Trait Implementations§
Source§impl Clone for dpiSubscrMessageRow
impl Clone for dpiSubscrMessageRow
Source§fn clone(&self) -> dpiSubscrMessageRow
fn clone(&self) -> dpiSubscrMessageRow
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 dpiSubscrMessageRow
impl Debug for dpiSubscrMessageRow
Source§impl Default for dpiSubscrMessageRow
impl Default for dpiSubscrMessageRow
impl Copy for dpiSubscrMessageRow
Auto Trait Implementations§
impl Freeze for dpiSubscrMessageRow
impl RefUnwindSafe for dpiSubscrMessageRow
impl !Send for dpiSubscrMessageRow
impl !Sync for dpiSubscrMessageRow
impl Unpin for dpiSubscrMessageRow
impl UnwindSafe for dpiSubscrMessageRow
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