pub struct TopicConnection {
pub id: i32,
pub topic: String,
pub msgtype: String,
pub msgcount: i32,
pub ext: ConnectionExt,
}
Fields§
§id: i32
§topic: String
§msgtype: String
§msgcount: i32
§ext: ConnectionExt
Trait Implementations§
Source§impl Clone for TopicConnection
impl Clone for TopicConnection
Source§fn clone(&self) -> TopicConnection
fn clone(&self) -> TopicConnection
Returns a duplicate 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 TopicConnection
impl Debug for TopicConnection
Source§impl PartialEq for TopicConnection
impl PartialEq for TopicConnection
impl StructuralPartialEq for TopicConnection
Auto Trait Implementations§
impl Freeze for TopicConnection
impl RefUnwindSafe for TopicConnection
impl Send for TopicConnection
impl Sync for TopicConnection
impl Unpin for TopicConnection
impl UnwindSafe for TopicConnection
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