pub struct ShareFetchRequest {Show 13 fields
pub group_id: Option<String>,
pub member_id: Option<String>,
pub share_session_epoch: i32,
pub max_wait_ms: i32,
pub min_bytes: i32,
pub max_bytes: i32,
pub max_records: i32,
pub batch_size: i32,
pub share_acquire_mode: i8,
pub is_renew_ack: bool,
pub topics: Vec<FetchTopic>,
pub forgotten_topics_data: Vec<ForgottenTopic>,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§group_id: Option<String>§member_id: Option<String>§max_wait_ms: i32§min_bytes: i32§max_bytes: i32§max_records: i32§batch_size: i32§is_renew_ack: bool§topics: Vec<FetchTopic>§forgotten_topics_data: Vec<ForgottenTopic>§unknown_tagged_fields: UnknownTaggedFieldsTrait Implementations§
Source§fn clone(&self) -> ShareFetchRequest
fn clone(&self) -> ShareFetchRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§fn eq(&self, other: &ShareFetchRequest) -> bool
fn eq(&self, other: &ShareFetchRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§const MIN_VERSION: i16 = MIN_VERSION
const MIN_VERSION: i16 = MIN_VERSION
Minimum protocol version this Rust type supports.
Source§const MAX_VERSION: i16 = MAX_VERSION
const MAX_VERSION: i16 = MAX_VERSION
Maximum protocol version this Rust type supports.
Source§const FLEXIBLE_MIN: i16 = FLEXIBLE_MIN
const FLEXIBLE_MIN: i16 = FLEXIBLE_MIN
First version that uses flexible (KIP-482) framing.
i16::MAX for never-flexible messages.Source§type Response = ShareFetchResponse
type Response = ShareFetchResponse
Matching response type from
crabka-protocol.Auto Trait Implementations§
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