pub struct InsertMessage<'a> {
pub transaction_id: Option<i32>,
pub oid: i32,
pub data: TupleData<'a>,
}
Fields§
§transaction_id: Option<i32>
Xid of the transaction (only present for streamed transactions).
NOTE: This field is available since protocol version 2.
oid: i32
OID of the relation.
data: TupleData<'a>
TupleData
message part representing the contents of new tuple.
Auto Trait Implementations§
impl<'a> Freeze for InsertMessage<'a>
impl<'a> RefUnwindSafe for InsertMessage<'a>
impl<'a> Send for InsertMessage<'a>
impl<'a> Sync for InsertMessage<'a>
impl<'a> Unpin for InsertMessage<'a>
impl<'a> UnwindSafe for InsertMessage<'a>
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