pub struct BatchFetchMessages {
pub topics: Vec<Topic>,
}Expand description
Data structure representing batch fetch request params.
Fields§
§topics: Vec<Topic>The topics of the messages to fetch.
Trait Implementations§
Source§impl Clone for BatchFetchMessages
impl Clone for BatchFetchMessages
Source§fn clone(&self) -> BatchFetchMessages
fn clone(&self) -> BatchFetchMessages
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 BatchFetchMessages
impl Debug for BatchFetchMessages
Source§impl<'de> Deserialize<'de> for BatchFetchMessages
impl<'de> Deserialize<'de> for BatchFetchMessages
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for BatchFetchMessages
impl Hash for BatchFetchMessages
Source§impl PartialEq for BatchFetchMessages
impl PartialEq for BatchFetchMessages
Source§impl Serialize for BatchFetchMessages
impl Serialize for BatchFetchMessages
Source§impl ServiceRequest for BatchFetchMessages
impl ServiceRequest for BatchFetchMessages
Source§type Error = GenericError
type Error = GenericError
The error representing a failed request.
Source§type Response = FetchResponse
type Response = FetchResponse
The type of a successful response.
fn into_params(self) -> Params
impl Eq for BatchFetchMessages
impl StructuralPartialEq for BatchFetchMessages
Auto Trait Implementations§
impl Freeze for BatchFetchMessages
impl RefUnwindSafe for BatchFetchMessages
impl Send for BatchFetchMessages
impl Sync for BatchFetchMessages
impl Unpin for BatchFetchMessages
impl UnwindSafe for BatchFetchMessages
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