#[repr(C)]
pub struct XLogReaderState {
Show 30 fields pub routine: XLogReaderRoutine, pub system_identifier: uint64, pub private_data: *mut c_void, pub ReadRecPtr: XLogRecPtr, pub EndRecPtr: XLogRecPtr, pub decoded_record: *mut XLogRecord, pub main_data: *mut c_char, pub main_data_len: uint32, pub main_data_bufsz: uint32, pub record_origin: RepOriginId, pub toplevel_xid: TransactionId, pub blocks: [DecodedBkpBlock; 33], pub max_block_id: c_int, pub readBuf: *mut c_char, pub readLen: uint32, pub segcxt: WALSegmentContext, pub seg: WALOpenSegment, pub segoff: uint32, pub latestPagePtr: XLogRecPtr, pub latestPageTLI: TimeLineID, pub currRecPtr: XLogRecPtr, pub currTLI: TimeLineID, pub currTLIValidUntil: XLogRecPtr, pub nextTLI: TimeLineID, pub readRecordBuf: *mut c_char, pub readRecordBufSize: uint32, pub errormsg_buf: *mut c_char, pub abortedRecPtr: XLogRecPtr, pub missingContrecPtr: XLogRecPtr, pub overwrittenRecPtr: XLogRecPtr,
}

Fields

routine: XLogReaderRoutinesystem_identifier: uint64private_data: *mut c_voidReadRecPtr: XLogRecPtrEndRecPtr: XLogRecPtrdecoded_record: *mut XLogRecordmain_data: *mut c_charmain_data_len: uint32main_data_bufsz: uint32record_origin: RepOriginIdtoplevel_xid: TransactionIdblocks: [DecodedBkpBlock; 33]max_block_id: c_intreadBuf: *mut c_charreadLen: uint32segcxt: WALSegmentContextseg: WALOpenSegmentsegoff: uint32latestPagePtr: XLogRecPtrlatestPageTLI: TimeLineIDcurrRecPtr: XLogRecPtrcurrTLI: TimeLineIDcurrTLIValidUntil: XLogRecPtrnextTLI: TimeLineIDreadRecordBuf: *mut c_charreadRecordBufSize: uint32errormsg_buf: *mut c_charabortedRecPtr: XLogRecPtrmissingContrecPtr: XLogRecPtroverwrittenRecPtr: XLogRecPtr

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.