Struct bonsaidb_core::networking::MessageReceived
source · pub struct MessageReceived {
pub subscriber_id: u64,
pub topic: Bytes,
pub payload: Bytes,
}
Expand description
A PubSub message was received.
Fields§
§subscriber_id: u64
The ID of the subscriber receiving the message.
topic: Bytes
The topic the payload was received on.
payload: Bytes
The message payload.
Trait Implementations§
source§impl Api for MessageReceived
impl Api for MessageReceived
source§impl Clone for MessageReceived
impl Clone for MessageReceived
source§fn clone(&self) -> MessageReceived
fn clone(&self) -> MessageReceived
Returns a copy 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 MessageReceived
impl Debug for MessageReceived
source§impl<'de> Deserialize<'de> for MessageReceived
impl<'de> Deserialize<'de> for MessageReceived
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
Auto Trait Implementations§
impl RefUnwindSafe for MessageReceived
impl Send for MessageReceived
impl Sync for MessageReceived
impl Unpin for MessageReceived
impl UnwindSafe for MessageReceived
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