pub struct BatchHeader {
pub partition_leader_epoch: i32,
pub magic: i8,
pub crc: u32,
pub attributes: i16,
pub last_offset_delta: i32,
pub first_timestamp: Timestamp,
pub max_time_stamp: Timestamp,
pub producer_id: i64,
pub producer_epoch: i16,
pub first_sequence: i32,
}Fields§
§partition_leader_epoch: i32§magic: i8§crc: u32§attributes: i16§last_offset_delta: i32Indicates the count from the beginning of the batch to the end
Adding this to the base_offset will give the offset of the last record in this batch
first_timestamp: Timestamp§max_time_stamp: Timestamp§producer_id: i64§producer_epoch: i16§first_sequence: i32Implementations§
Source§impl BatchHeader
impl BatchHeader
pub fn set_compression(&mut self, compression: Compression)
Trait Implementations§
Source§impl Clone for BatchHeader
impl Clone for BatchHeader
Source§fn clone(&self) -> BatchHeader
fn clone(&self) -> BatchHeader
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BatchHeader
impl Debug for BatchHeader
Source§impl Decoder for BatchHeader
impl Decoder for BatchHeader
Source§impl Default for BatchHeader
impl Default for BatchHeader
Source§impl Encoder for BatchHeader
impl Encoder for BatchHeader
Auto Trait Implementations§
impl Freeze for BatchHeader
impl RefUnwindSafe for BatchHeader
impl Send for BatchHeader
impl Sync for BatchHeader
impl Unpin for BatchHeader
impl UnwindSafe for BatchHeader
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