pub struct ForgottenTopic {
pub topic_id: Uuid,
pub partitions: Vec<i32>,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§topic_id: Uuid§partitions: Vec<i32>§unknown_tagged_fields: UnknownTaggedFieldsImplementations§
Source§impl ForgottenTopic
impl ForgottenTopic
pub fn to_owned(&self) -> ForgottenTopic
Trait Implementations§
Source§impl Clone for ForgottenTopic
impl Clone for ForgottenTopic
Source§fn clone(&self) -> ForgottenTopic
fn clone(&self) -> ForgottenTopic
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 ForgottenTopic
impl Debug for ForgottenTopic
Source§impl<'de> DecodeBorrow<'de> for ForgottenTopic
impl<'de> DecodeBorrow<'de> for ForgottenTopic
fn decode_borrow( buf: &mut &'de [u8], version: i16, ) -> Result<Self, ProtocolError>
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
Source§impl Encode for ForgottenTopic
impl Encode for ForgottenTopic
impl Eq for ForgottenTopic
Source§impl PartialEq for ForgottenTopic
impl PartialEq for ForgottenTopic
Source§fn eq(&self, other: &ForgottenTopic) -> bool
fn eq(&self, other: &ForgottenTopic) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ForgottenTopic
Auto Trait Implementations§
impl Freeze for ForgottenTopic
impl RefUnwindSafe for ForgottenTopic
impl Send for ForgottenTopic
impl Sync for ForgottenTopic
impl Unpin for ForgottenTopic
impl UnsafeUnpin 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