pub struct SubscriberDetails {
pub topic_name: String,
pub message_type: String,
pub latched: bool,
}
Fields§
§topic_name: String
§message_type: String
§latched: bool
Trait Implementations§
Source§impl Clone for SubscriberDetails
impl Clone for SubscriberDetails
Source§fn clone(&self) -> SubscriberDetails
fn clone(&self) -> SubscriberDetails
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 SubscriberDetails
impl Debug for SubscriberDetails
Source§impl Default for SubscriberDetails
impl Default for SubscriberDetails
Source§impl<'de> Deserialize<'de> for SubscriberDetails
impl<'de> Deserialize<'de> for SubscriberDetails
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SubscriberDetails
impl PartialEq for SubscriberDetails
Source§impl Serialize for SubscriberDetails
impl Serialize for SubscriberDetails
impl Message for SubscriberDetails
impl StructuralPartialEq for SubscriberDetails
Auto Trait Implementations§
impl Freeze for SubscriberDetails
impl RefUnwindSafe for SubscriberDetails
impl Send for SubscriberDetails
impl Sync for SubscriberDetails
impl Unpin for SubscriberDetails
impl UnwindSafe for SubscriberDetails
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