pub struct AcknowledgeMessageParams {
pub message_ids: Vec<String>,
}Expand description
Parameters for acknowledging (marking as read) a set of messages.
Fields§
§message_ids: Vec<String>Trait Implementations§
Source§impl Clone for AcknowledgeMessageParams
impl Clone for AcknowledgeMessageParams
Source§fn clone(&self) -> AcknowledgeMessageParams
fn clone(&self) -> AcknowledgeMessageParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AcknowledgeMessageParams
impl Debug for AcknowledgeMessageParams
Source§impl<'de> Deserialize<'de> for AcknowledgeMessageParams
impl<'de> Deserialize<'de> for AcknowledgeMessageParams
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 AcknowledgeMessageParams
impl RefUnwindSafe for AcknowledgeMessageParams
impl Send for AcknowledgeMessageParams
impl Sync for AcknowledgeMessageParams
impl Unpin for AcknowledgeMessageParams
impl UnsafeUnpin for AcknowledgeMessageParams
impl UnwindSafe for AcknowledgeMessageParams
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