pub struct CleanMessagesResponse {
pub cleaned: HashMap<String, String>,
}Expand description
Response from clean messages API.
Fields§
§cleaned: HashMap<String, String>Cleaned message bodies indexed by message ID.
Trait Implementations§
Source§impl Clone for CleanMessagesResponse
impl Clone for CleanMessagesResponse
Source§fn clone(&self) -> CleanMessagesResponse
fn clone(&self) -> CleanMessagesResponse
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 CleanMessagesResponse
impl Debug for CleanMessagesResponse
Source§impl<'de> Deserialize<'de> for CleanMessagesResponse
impl<'de> Deserialize<'de> for CleanMessagesResponse
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
impl Eq for CleanMessagesResponse
Source§impl PartialEq for CleanMessagesResponse
impl PartialEq for CleanMessagesResponse
Source§fn eq(&self, other: &CleanMessagesResponse) -> bool
fn eq(&self, other: &CleanMessagesResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CleanMessagesResponse
impl Serialize for CleanMessagesResponse
impl StructuralPartialEq for CleanMessagesResponse
Auto Trait Implementations§
impl Freeze for CleanMessagesResponse
impl RefUnwindSafe for CleanMessagesResponse
impl Send for CleanMessagesResponse
impl Sync for CleanMessagesResponse
impl Unpin for CleanMessagesResponse
impl UnsafeUnpin for CleanMessagesResponse
impl UnwindSafe for CleanMessagesResponse
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