Struct mariadb_sys::st_mysql_xid
source · #[repr(C)]pub struct st_mysql_xid {
pub formatID: c_long,
pub gtrid_length: c_long,
pub bqual_length: c_long,
pub data: [c_char; 128],
}
Expand description
struct st_mysql_xid 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 XID in sql/handler.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 st_mysql_xid
impl Send for st_mysql_xid
impl Sync for st_mysql_xid
impl Unpin for st_mysql_xid
impl UnwindSafe for st_mysql_xid
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