Struct fluvio_dataplane_protocol::fetch::FetchResponse
source · [−]pub struct FetchResponse<R> where
R: Encoder + Decoder + Default + Debug, {
pub throttle_time_ms: i32,
pub error_code: ErrorCode,
pub session_id: i32,
pub topics: Vec<FetchableTopicResponse<R>>,
}Fields
throttle_time_ms: i32The duration in milliseconds for which the request was throttled due to a quota violation, or zero if the request did not violate any quota.
error_code: ErrorCodesession_id: i32topics: Vec<FetchableTopicResponse<R>>The response topics.
Implementations
sourceimpl<R> FetchResponse<R> where
R: Encoder + Decoder + Default + Debug,
impl<R> FetchResponse<R> where
R: Encoder + Decoder + Default + Debug,
pub fn find_partition(
self,
topic: &str,
partition: i32
) -> Option<FetchablePartitionResponse<R>>
sourceimpl<R> FetchResponse<R> where
R: Encoder + Decoder + Debug,
impl<R> FetchResponse<R> where
R: Encoder + Decoder + Debug,
pub fn find_topic(&self, topic: &str) -> Option<&FetchableTopicResponse<R>> where
R: Debug,
Trait Implementations
Auto Trait Implementations
impl<R> RefUnwindSafe for FetchResponse<R> where
R: RefUnwindSafe,
impl<R> Send for FetchResponse<R> where
R: Send,
impl<R> Sync for FetchResponse<R> where
R: Sync,
impl<R> Unpin for FetchResponse<R> where
R: Unpin,
impl<R> UnwindSafe for FetchResponse<R> where
R: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more