Struct kafka_api::fetch_request::ForgottenTopic
source · pub struct ForgottenTopic {
pub topic: String,
pub topic_id: Uuid,
pub partitions: Vec<i32>,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}
Fields§
§topic: String
The topic name.
topic_id: Uuid
The unique topic ID
partitions: Vec<i32>
The partitions indexes to forget.
unknown_tagged_fields: Vec<RawTaggedField>
Unknown tagged fields.
Trait Implementations§
source§impl Clone for ForgottenTopic
impl Clone for ForgottenTopic
source§fn clone(&self) -> ForgottenTopic
fn clone(&self) -> ForgottenTopic
Returns a copy 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 ForgottenTopic
impl Debug for ForgottenTopic
source§impl Decodable for ForgottenTopic
impl Decodable for ForgottenTopic
source§impl Default for ForgottenTopic
impl Default for ForgottenTopic
source§fn default() -> ForgottenTopic
fn default() -> ForgottenTopic
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ForgottenTopic
impl Send for ForgottenTopic
impl Sync for ForgottenTopic
impl Unpin for ForgottenTopic
impl UnwindSafe for ForgottenTopic
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