pub type DefaultKfFetchResponse = KfFetchResponse<RecordSet>;Aliased Type§
pub struct DefaultKfFetchResponse {
pub throttle_time_ms: i32,
pub error_code: ErrorCode,
pub session_id: i32,
pub topics: Vec<FetchableTopicResponse<RecordSet>>,
}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: ErrorCodeThe top level response error code.
session_id: i32The fetch session ID, or 0 if this is not part of a fetch session.
topics: Vec<FetchableTopicResponse<RecordSet>>The response topics.