Struct mariadb_sys::xid_t
source · #[repr(C)]pub struct xid_t {
pub formatID: c_long,
pub gtrid_length: c_long,
pub bqual_length: c_long,
pub data: [c_char; 128],
}
Expand description
struct xid_t is binary compatible with the XID structure as in the X/Open CAE Specification, Distributed Transaction Processing: The XA Specification, X/Open Company Ltd., 1991. http://www.opengroup.org/bookstore/catalog/c193.htm
@see MYSQL_XID in mysql/plugin.h
Fields§
§formatID: c_long
§gtrid_length: c_long
§bqual_length: c_long
§data: [c_char; 128]
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for xid_t
impl Send for xid_t
impl Sync for xid_t
impl Unpin for xid_t
impl UnwindSafe for xid_t
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