pub struct CleanMessageResponse {
pub message_id: MessageId,
pub conversation: String,
}Expand description
Response from clean single message endpoint.
Fields§
§message_id: MessageIdMessage ID.
conversation: StringCleaned conversation text (signature and quotes removed).
Trait Implementations§
Source§impl Clone for CleanMessageResponse
impl Clone for CleanMessageResponse
Source§fn clone(&self) -> CleanMessageResponse
fn clone(&self) -> CleanMessageResponse
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 CleanMessageResponse
impl Debug for CleanMessageResponse
Source§impl<'de> Deserialize<'de> for CleanMessageResponse
impl<'de> Deserialize<'de> for CleanMessageResponse
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 CleanMessageResponse
Source§impl PartialEq for CleanMessageResponse
impl PartialEq for CleanMessageResponse
Source§fn eq(&self, other: &CleanMessageResponse) -> bool
fn eq(&self, other: &CleanMessageResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CleanMessageResponse
impl Serialize for CleanMessageResponse
impl StructuralPartialEq for CleanMessageResponse
Auto Trait Implementations§
impl Freeze for CleanMessageResponse
impl RefUnwindSafe for CleanMessageResponse
impl Send for CleanMessageResponse
impl Sync for CleanMessageResponse
impl Unpin for CleanMessageResponse
impl UnsafeUnpin for CleanMessageResponse
impl UnwindSafe for CleanMessageResponse
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