pub struct SubscribedTopic {
pub name: String,
pub subscriber_ids: Vec<String>,
}Fields§
§name: String§subscriber_ids: Vec<String>Trait Implementations§
Source§impl Clone for SubscribedTopic
impl Clone for SubscribedTopic
Source§fn clone(&self) -> SubscribedTopic
fn clone(&self) -> SubscribedTopic
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 SubscribedTopic
impl Debug for SubscribedTopic
Source§impl<'de> Deserialize<'de> for SubscribedTopic
impl<'de> Deserialize<'de> for SubscribedTopic
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 SubscribedTopic
impl PartialEq for SubscribedTopic
Source§impl Serialize for SubscribedTopic
impl Serialize for SubscribedTopic
impl Eq for SubscribedTopic
impl StructuralPartialEq for SubscribedTopic
Auto Trait Implementations§
impl Freeze for SubscribedTopic
impl RefUnwindSafe for SubscribedTopic
impl Send for SubscribedTopic
impl Sync for SubscribedTopic
impl Unpin for SubscribedTopic
impl UnwindSafe for SubscribedTopic
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