pub struct FetchTopic {
pub topic: String,
pub topic_id: Uuid,
pub partitions: Vec<FetchPartition>,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§topic: String§topic_id: Uuid§partitions: Vec<FetchPartition>§unknown_tagged_fields: UnknownTaggedFieldsTrait Implementations§
Source§impl Clone for FetchTopic
impl Clone for FetchTopic
Source§fn clone(&self) -> FetchTopic
fn clone(&self) -> FetchTopic
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§impl Debug for FetchTopic
impl Debug for FetchTopic
Source§impl Decode<'_> for FetchTopic
impl Decode<'_> for FetchTopic
Source§impl Default for FetchTopic
impl Default for FetchTopic
Source§fn default() -> FetchTopic
fn default() -> FetchTopic
Returns the “default value” for a type. Read more
Source§impl Encode for FetchTopic
impl Encode for FetchTopic
impl Eq for FetchTopic
Source§impl From<FetchTopic> for FetchTopic
impl From<FetchTopic> for FetchTopic
Source§fn from(l: FetchTopic) -> Self
fn from(l: FetchTopic) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FetchTopic
impl PartialEq for FetchTopic
Source§fn eq(&self, other: &FetchTopic) -> bool
fn eq(&self, other: &FetchTopic) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FetchTopic
Auto Trait Implementations§
impl Freeze for FetchTopic
impl RefUnwindSafe for FetchTopic
impl Send for FetchTopic
impl Sync for FetchTopic
impl Unpin for FetchTopic
impl UnsafeUnpin for FetchTopic
impl UnwindSafe for FetchTopic
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