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