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 Freeze for ForgottenTopic
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