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