pub struct DeleteMessageParams {
pub thread_id: String,
pub message_id: String,
}
Fields§
§thread_id: String
The ID of the thread to which this message belongs.
message_id: String
The ID of the message to delete.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteMessageParams
impl Clone for DeleteMessageParams
Source§fn clone(&self) -> DeleteMessageParams
fn clone(&self) -> DeleteMessageParams
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeleteMessageParams
impl Debug for DeleteMessageParams
Source§impl<'de> Deserialize<'de> for DeleteMessageParams
impl<'de> Deserialize<'de> for DeleteMessageParams
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
Source§impl PartialEq for DeleteMessageParams
impl PartialEq for DeleteMessageParams
Source§impl Serialize for DeleteMessageParams
impl Serialize for DeleteMessageParams
impl StructuralPartialEq for DeleteMessageParams
Auto Trait Implementations§
impl Freeze for DeleteMessageParams
impl RefUnwindSafe for DeleteMessageParams
impl Send for DeleteMessageParams
impl Sync for DeleteMessageParams
impl Unpin for DeleteMessageParams
impl UnwindSafe for DeleteMessageParams
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