pub struct FetchRequestPartition {
pub partition: Int32,
pub fetch_offset: Int64,
pub partition_max_bytes: Int32,
}Fields§
§partition: Int32The partition index.
fetch_offset: Int64The message offset.
partition_max_bytes: Int32The maximum bytes to fetch from this partition.
See KIP-74 for cases where this limit may not be honored.
Trait Implementations§
Source§impl Debug for FetchRequestPartition
impl Debug for FetchRequestPartition
Source§impl<W> WriteVersionedType<W> for FetchRequestPartitionwhere
W: Write,
impl<W> WriteVersionedType<W> for FetchRequestPartitionwhere
W: Write,
fn write_versioned( &self, writer: &mut W, version: ApiVersion, ) -> Result<(), WriteVersionedError>
Auto Trait Implementations§
impl Freeze for FetchRequestPartition
impl RefUnwindSafe for FetchRequestPartition
impl Send for FetchRequestPartition
impl Sync for FetchRequestPartition
impl Unpin for FetchRequestPartition
impl UnwindSafe for FetchRequestPartition
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