pub struct PublishMessageResponse {
pub message_ids: Vec<String>,
}Fields§
§message_ids: Vec<String>The server-assigned ID of each published message, in the same order as the messages in the request. IDs are guaranteed to be unique within the topic.
Trait Implementations§
Source§impl Clone for PublishMessageResponse
impl Clone for PublishMessageResponse
Source§fn clone(&self) -> PublishMessageResponse
fn clone(&self) -> PublishMessageResponse
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 PublishMessageResponse
impl Debug for PublishMessageResponse
Source§impl<'de> Deserialize<'de> for PublishMessageResponse
impl<'de> Deserialize<'de> for PublishMessageResponse
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 Freeze for PublishMessageResponse
impl RefUnwindSafe for PublishMessageResponse
impl Send for PublishMessageResponse
impl Sync for PublishMessageResponse
impl Unpin for PublishMessageResponse
impl UnwindSafe for PublishMessageResponse
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