pub struct TypeMessage {
pub transaction_id: Option<i32>,
pub oid: i32,
pub namespace: Option<String>,
pub name: String,
}
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.
namespace: Option<String>
Namespace (None
for pg_catalog
).
name: String
Name of the data type.
Auto Trait Implementations§
impl Freeze for TypeMessage
impl RefUnwindSafe for TypeMessage
impl Send for TypeMessage
impl Sync for TypeMessage
impl Unpin for TypeMessage
impl UnwindSafe for TypeMessage
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