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